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

CreateRestoreImageTaskRequest

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

§Properties

§
Bucket: string
[src]

The name of the Amazon S3 bucket that contains the stored AMI object.

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

§
Name?: string | null
[src]

The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not provide a name, the new AMI gets the same name as the original AMI.

§
ObjectKey: string
[src]

The name of the stored AMI object in the bucket.

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

The tags to apply to the AMI and snapshots on restoration. You can tag the AMI, the snapshots, or both.

  • To tag the AMI, the value for ResourceType must be image.
  • To tag the snapshots, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created.