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

ListRecoveryPointsByBackupVaultInput

import type { ListRecoveryPointsByBackupVaultInput } from "https://aws-api.deno.dev/v0.4/services/backup.ts?docs=full";
interface ListRecoveryPointsByBackupVaultInput {
BackupVaultName: string;
ByBackupPlanId?: string | null;
ByCreatedAfter?: Date | number | null;
ByCreatedBefore?: Date | number | null;
ByParentRecoveryPointArn?: string | null;
ByResourceArn?: string | null;
ByResourceType?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
}

§Properties

§
BackupVaultName: string
[src]

The name of a logical container where backups are stored. 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.

Note: Backup vault name might not be available when a supported service creates the backup.

§
ByBackupPlanId?: string | null
[src]

Returns only recovery points that match the specified backup plan ID.

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

Returns only recovery points that were created after the specified timestamp.

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

Returns only recovery points that were created before the specified timestamp.

§
ByParentRecoveryPointArn?: string | null
[src]

This returns only recovery points that match the specified parent (composite) recovery point Amazon Resource Name (ARN).

§
ByResourceArn?: string | null
[src]

Returns only recovery points that match the specified resource Amazon Resource Name (ARN).

§
ByResourceType?: string | null
[src]

Returns only recovery points that match the specified resource type.

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