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.4/services/backup.ts?docs=full";
interface ListBackupJobsInput {
ByAccountId?: string | null;
ByBackupVaultName?: string | null;
ByCompleteAfter?: Date | number | null;
ByCompleteBefore?: Date | number | null;
ByCreatedAfter?: Date | number | null;
ByCreatedBefore?: Date | number | null;
ByParentJobId?: string | 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.

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

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

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

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

§
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.

§
ByParentJobId?: string | null
[src]

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

§
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:

  • 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?: 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.