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

CreateImageRequest

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

§Properties

§
BlockDeviceMappings?: BlockDeviceMapping[] | null
[src]

The block device mappings. This parameter cannot be used to modify the encryption status of existing volumes or snapshots. To create an AMI with encrypted snapshots, use the "CopyImage" action.

§
Description?: string | null
[src]

A description for the new image.

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

§
InstanceId: string
[src]

The ID of the instance.

§
Name: string
[src]

A name for the new image.

Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or underscores(_)

§
NoReboot?: boolean | null
[src]

By default, Amazon EC2 attempts to shut down and reboot the instance before creating the image. If the No Reboot option is set, Amazon EC2 doesn't shut down the instance before creating the image. Without a reboot, the AMI will be crash consistent (all the volumes are snapshotted at the same time), but not application consistent (all the operating system buffers are not flushed to disk before the snapshots are created).

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

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

  • To tag the AMI, the value for ResourceType must be image.
  • To tag the snapshots that are created of the root volume and of other Amazon EBS volumes that are attached to the instance, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created.

If you specify other values for ResourceType, the request fails.

To tag an AMI or snapshot after it has been created, see CreateTags.