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

ListBackupsInput

import type { ListBackupsInput } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";
interface ListBackupsInput {
BackupType?: BackupTypeFilter | null;
ExclusiveStartBackupArn?: string | null;
Limit?: number | null;
TableName?: string | null;
TimeRangeLowerBound?: Date | number | null;
TimeRangeUpperBound?: Date | number | null;
}

§Properties

§
BackupType?: BackupTypeFilter | null
[src]

The backups from the table specified by BackupType are listed.

Where BackupType can be:

  • USER - On-demand backup created by you.
  • SYSTEM - On-demand backup automatically created by DynamoDB.
  • ALL - All types of on-demand backups (USER and SYSTEM).
§
ExclusiveStartBackupArn?: string | null
[src]

LastEvaluatedBackupArn is the Amazon Resource Name (ARN) of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as the ExclusiveStartBackupArn of a new ListBackups operation in order to fetch the next page of results.

§
Limit?: number | null
[src]

Maximum number of backups to return at once.

§
TableName?: string | null
[src]

The backups from the table specified by TableName are listed.

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

Only backups created after this time are listed. TimeRangeLowerBound is inclusive.

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

Only backups created before this time are listed. TimeRangeUpperBound is exclusive.