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

ListBackupJobsInput

import type { ListBackupJobsInput } from "https://aws-api.deno.dev/v0.3/services/backup.ts?docs=full";
interface ListBackupJobsInput {
ByAccountId?: string | null;
ByBackupVaultName?: string | null;
ByCreatedAfter?: Date | number | null;
ByCreatedBefore?: Date | number | null;
ByResourceArn?: string | null;
ByResourceType?: string | null;
ByState?: BackupJobState | null;
MaxResults?: number | null;
NextToken?: string | null;
}

§Properties

§
ByAccountId?: string | null
[src]

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

If used from an Organizations management account, passing * returns all jobs across the organization.

§
ByBackupVaultName?: string | null
[src]

Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.

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

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

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

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

§
ByResourceArn?: string | null
[src]

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

§
ByResourceType?: string | null
[src]

Returns only backup jobs for the specified resources:

  • DynamoDB for Amazon DynamoDB
  • EBS for Amazon Elastic Block Store
  • EC2 for Amazon Elastic Compute Cloud
  • EFS for Amazon Elastic File System
  • RDS for Amazon Relational Database Service
  • Aurora for Amazon Aurora
  • Storage Gateway for Storage Gateway
§
ByState?: BackupJobState | null
[src]

Returns only backup 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.