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

CreateSnapshotRequest

import type { CreateSnapshotRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface CreateSnapshotRequest {
Description?: string | null;
DryRun?: boolean | null;
OutpostArn?: string | null;
TagSpecifications?: TagSpecification[] | null;
VolumeId: string;
}

§Properties

§
Description?: string | null
[src]

A description for the snapshot.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
OutpostArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Outpost on which to create a local snapshot.

  • To create a snapshot of a volume in a Region, omit this parameter. The snapshot is created in the same Region as the volume.
  • To create a snapshot of a volume on an Outpost and store the snapshot in the Region, omit this parameter. The snapshot is created in the Region for the Outpost.
  • To create a snapshot of a volume on an Outpost and store the snapshot on an Outpost, specify the ARN of the destination Outpost. The snapshot must be created on the same Outpost as the volume.

For more information, see Create local snapshots from volumes on an Outpost in the Amazon Elastic Compute Cloud User Guide.

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to apply to the snapshot during creation.

§
VolumeId: string
[src]

The ID of the Amazon EBS volume.