Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListCopyJobsInput

import type { ListCopyJobsInput } from "https://aws-api.deno.dev/v0.4/services/backup.ts?docs=full";
interface ListCopyJobsInput {
ByAccountId?: string | null;
ByCompleteAfter?: Date | number | null;
ByCompleteBefore?: Date | number | null;
ByCreatedAfter?: Date | number | null;
ByCreatedBefore?: Date | number | null;
ByDestinationVaultArn?: string | null;
ByParentJobId?: string | null;
ByResourceArn?: string | null;
ByResourceType?: string | null;
ByState?: CopyJobState | null;
MaxResults?: number | null;
NextToken?: string | null;
}

§Properties

§
ByAccountId?: string | null
[src]

The account ID to list the jobs from. Returns only copy jobs associated with the specified account ID.

§
ByCompleteAfter?: Date | number | null
[src]

Returns only copy jobs completed after a date expressed in Unix format and Coordinated Universal Time (UTC).

§
ByCompleteBefore?: Date | number | null
[src]

Returns only copy jobs completed before a date expressed in Unix format and Coordinated Universal Time (UTC).

§
ByCreatedAfter?: Date | number | null
[src]

Returns only copy jobs that were created after the specified date.

§
ByCreatedBefore?: Date | number | null
[src]

Returns only copy jobs that were created before the specified date.

§
ByDestinationVaultArn?: string | null
[src]

An Amazon Resource Name (ARN) that uniquely identifies a source backup vault to copy from; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.

§
ByParentJobId?: string | null
[src]

This is a filter to list child (nested) jobs based on parent job ID.

§
ByResourceArn?: string | null
[src]

Returns only copy jobs that match the specified resource Amazon Resource Name (ARN).

§
ByResourceType?: string | null
[src]

Returns only backup jobs for the specified resources:

  • Aurora for Amazon Aurora
  • DocumentDB for Amazon DocumentDB (with MongoDB compatibility)
  • DynamoDB for Amazon DynamoDB
  • EBS for Amazon Elastic Block Store
  • EC2 for Amazon Elastic Compute Cloud
  • EFS for Amazon Elastic File System
  • FSx for Amazon FSx
  • Neptune for Amazon Neptune
  • RDS for Amazon Relational Database Service
  • Storage Gateway for Storage Gateway
  • S3 for Amazon S3
  • VirtualMachine for virtual machines
§
ByState?: CopyJobState | null
[src]

Returns only copy jobs that are in the specified state.

§
MaxResults?: number | null
[src]

The maximum number of items to be returned.

§
NextToken?: string | null
[src]

The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.