1. Packages
  2. AWS Classic
  3. API Docs
  4. ec2
  5. Ami

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.ec2.Ami

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    The AMI resource allows the creation and management of a completely-custom Amazon Machine Image (AMI).

    If you just want to duplicate an existing AMI, possibly copying it to another region, it’s better to use aws.ec2.AmiCopy instead.

    If you just want to share an existing AMI with another AWS account, it’s better to use aws.ec2.AmiLaunchPermission instead.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    // Create an AMI that will start a machine whose root device is backed by
    // an EBS volume populated from a snapshot. We assume that such a snapshot
    // already exists with the id "snap-xxxxxxxx".
    const example = new aws.ec2.Ami("example", {
        name: "example",
        virtualizationType: "hvm",
        rootDeviceName: "/dev/xvda",
        imdsSupport: "v2.0",
        ebsBlockDevices: [{
            deviceName: "/dev/xvda",
            snapshotId: "snap-xxxxxxxx",
            volumeSize: 8,
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    # Create an AMI that will start a machine whose root device is backed by
    # an EBS volume populated from a snapshot. We assume that such a snapshot
    # already exists with the id "snap-xxxxxxxx".
    example = aws.ec2.Ami("example",
        name="example",
        virtualization_type="hvm",
        root_device_name="/dev/xvda",
        imds_support="v2.0",
        ebs_block_devices=[aws.ec2.AmiEbsBlockDeviceArgs(
            device_name="/dev/xvda",
            snapshot_id="snap-xxxxxxxx",
            volume_size=8,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create an AMI that will start a machine whose root device is backed by
    		// an EBS volume populated from a snapshot. We assume that such a snapshot
    		// already exists with the id "snap-xxxxxxxx".
    		_, err := ec2.NewAmi(ctx, "example", &ec2.AmiArgs{
    			Name:               pulumi.String("example"),
    			VirtualizationType: pulumi.String("hvm"),
    			RootDeviceName:     pulumi.String("/dev/xvda"),
    			ImdsSupport:        pulumi.String("v2.0"),
    			EbsBlockDevices: ec2.AmiEbsBlockDeviceArray{
    				&ec2.AmiEbsBlockDeviceArgs{
    					DeviceName: pulumi.String("/dev/xvda"),
    					SnapshotId: pulumi.String("snap-xxxxxxxx"),
    					VolumeSize: pulumi.Int(8),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        // Create an AMI that will start a machine whose root device is backed by
        // an EBS volume populated from a snapshot. We assume that such a snapshot
        // already exists with the id "snap-xxxxxxxx".
        var example = new Aws.Ec2.Ami("example", new()
        {
            Name = "example",
            VirtualizationType = "hvm",
            RootDeviceName = "/dev/xvda",
            ImdsSupport = "v2.0",
            EbsBlockDevices = new[]
            {
                new Aws.Ec2.Inputs.AmiEbsBlockDeviceArgs
                {
                    DeviceName = "/dev/xvda",
                    SnapshotId = "snap-xxxxxxxx",
                    VolumeSize = 8,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.Ami;
    import com.pulumi.aws.ec2.AmiArgs;
    import com.pulumi.aws.ec2.inputs.AmiEbsBlockDeviceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Ami("example", AmiArgs.builder()        
                .name("example")
                .virtualizationType("hvm")
                .rootDeviceName("/dev/xvda")
                .imdsSupport("v2.0")
                .ebsBlockDevices(AmiEbsBlockDeviceArgs.builder()
                    .deviceName("/dev/xvda")
                    .snapshotId("snap-xxxxxxxx")
                    .volumeSize(8)
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Create an AMI that will start a machine whose root device is backed by
      # an EBS volume populated from a snapshot. We assume that such a snapshot
      # already exists with the id "snap-xxxxxxxx".
      example:
        type: aws:ec2:Ami
        properties:
          name: example
          virtualizationType: hvm
          rootDeviceName: /dev/xvda
          imdsSupport: v2.0
          ebsBlockDevices:
            - deviceName: /dev/xvda
              snapshotId: snap-xxxxxxxx
              volumeSize: 8
    

    Create Ami Resource

    new Ami(name: string, args?: AmiArgs, opts?: CustomResourceOptions);
    @overload
    def Ami(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            architecture: Optional[str] = None,
            boot_mode: Optional[str] = None,
            deprecation_time: Optional[str] = None,
            description: Optional[str] = None,
            ebs_block_devices: Optional[Sequence[AmiEbsBlockDeviceArgs]] = None,
            ena_support: Optional[bool] = None,
            ephemeral_block_devices: Optional[Sequence[AmiEphemeralBlockDeviceArgs]] = None,
            image_location: Optional[str] = None,
            imds_support: Optional[str] = None,
            kernel_id: Optional[str] = None,
            name: Optional[str] = None,
            ramdisk_id: Optional[str] = None,
            root_device_name: Optional[str] = None,
            sriov_net_support: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tpm_support: Optional[str] = None,
            virtualization_type: Optional[str] = None)
    @overload
    def Ami(resource_name: str,
            args: Optional[AmiArgs] = None,
            opts: Optional[ResourceOptions] = None)
    func NewAmi(ctx *Context, name string, args *AmiArgs, opts ...ResourceOption) (*Ami, error)
    public Ami(string name, AmiArgs? args = null, CustomResourceOptions? opts = null)
    public Ami(String name, AmiArgs args)
    public Ami(String name, AmiArgs args, CustomResourceOptions options)
    
    type: aws:ec2:Ami
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AmiArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AmiArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AmiArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AmiArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AmiArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Ami Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Ami resource accepts the following input properties:

    Architecture string
    Machine architecture for created instances. Defaults to "x86_64".
    BootMode string
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    DeprecationTime string
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    Description string
    Longer, human-readable description for the AMI.
    EbsBlockDevices List<AmiEbsBlockDevice>
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    EnaSupport bool
    Whether enhanced networking with ENA is enabled. Defaults to false.
    EphemeralBlockDevices List<AmiEphemeralBlockDevice>
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    ImageLocation string
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    ImdsSupport string
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    KernelId string
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    Name string
    Region-unique name for the AMI.
    RamdiskId string
    ID of an initrd image (ARI) that will be used when booting the created instances.
    RootDeviceName string
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    SriovNetSupport string
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TpmSupport string
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    VirtualizationType string
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    Architecture string
    Machine architecture for created instances. Defaults to "x86_64".
    BootMode string
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    DeprecationTime string
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    Description string
    Longer, human-readable description for the AMI.
    EbsBlockDevices []AmiEbsBlockDeviceArgs
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    EnaSupport bool
    Whether enhanced networking with ENA is enabled. Defaults to false.
    EphemeralBlockDevices []AmiEphemeralBlockDeviceArgs
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    ImageLocation string
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    ImdsSupport string
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    KernelId string
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    Name string
    Region-unique name for the AMI.
    RamdiskId string
    ID of an initrd image (ARI) that will be used when booting the created instances.
    RootDeviceName string
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    SriovNetSupport string
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TpmSupport string
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    VirtualizationType string
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture String
    Machine architecture for created instances. Defaults to "x86_64".
    bootMode String
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecationTime String
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description String
    Longer, human-readable description for the AMI.
    ebsBlockDevices List<AmiEbsBlockDevice>
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    enaSupport Boolean
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeralBlockDevices List<AmiEphemeralBlockDevice>
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    imageLocation String
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imdsSupport String
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernelId String
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    name String
    Region-unique name for the AMI.
    ramdiskId String
    ID of an initrd image (ARI) that will be used when booting the created instances.
    rootDeviceName String
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    sriovNetSupport String
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tpmSupport String
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    virtualizationType String
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture string
    Machine architecture for created instances. Defaults to "x86_64".
    bootMode string
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecationTime string
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description string
    Longer, human-readable description for the AMI.
    ebsBlockDevices AmiEbsBlockDevice[]
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    enaSupport boolean
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeralBlockDevices AmiEphemeralBlockDevice[]
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    imageLocation string
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imdsSupport string
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernelId string
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    name string
    Region-unique name for the AMI.
    ramdiskId string
    ID of an initrd image (ARI) that will be used when booting the created instances.
    rootDeviceName string
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    sriovNetSupport string
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tpmSupport string
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    virtualizationType string
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture str
    Machine architecture for created instances. Defaults to "x86_64".
    boot_mode str
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecation_time str
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description str
    Longer, human-readable description for the AMI.
    ebs_block_devices Sequence[AmiEbsBlockDeviceArgs]
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    ena_support bool
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeral_block_devices Sequence[AmiEphemeralBlockDeviceArgs]
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    image_location str
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imds_support str
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernel_id str
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    name str
    Region-unique name for the AMI.
    ramdisk_id str
    ID of an initrd image (ARI) that will be used when booting the created instances.
    root_device_name str
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    sriov_net_support str
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tpm_support str
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    virtualization_type str
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture String
    Machine architecture for created instances. Defaults to "x86_64".
    bootMode String
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecationTime String
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description String
    Longer, human-readable description for the AMI.
    ebsBlockDevices List<Property Map>
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    enaSupport Boolean
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeralBlockDevices List<Property Map>
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    imageLocation String
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imdsSupport String
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernelId String
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    name String
    Region-unique name for the AMI.
    ramdiskId String
    ID of an initrd image (ARI) that will be used when booting the created instances.
    rootDeviceName String
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    sriovNetSupport String
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tpmSupport String
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    virtualizationType String
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Ami resource produces the following output properties:

    Arn string
    ARN of the AMI.
    Hypervisor string
    Hypervisor type of the image.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImageOwnerAlias string
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    ImageType string
    Type of image.
    ManageEbsSnapshots bool
    OwnerId string
    AWS account ID of the image owner.
    Platform string
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    PlatformDetails string
    Platform details associated with the billing code of the AMI.
    Public bool
    Whether the image has public launch permissions.
    RootSnapshotId string
    Snapshot ID for the root volume (for EBS-backed AMIs)
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    UsageOperation string
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    Arn string
    ARN of the AMI.
    Hypervisor string
    Hypervisor type of the image.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImageOwnerAlias string
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    ImageType string
    Type of image.
    ManageEbsSnapshots bool
    OwnerId string
    AWS account ID of the image owner.
    Platform string
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    PlatformDetails string
    Platform details associated with the billing code of the AMI.
    Public bool
    Whether the image has public launch permissions.
    RootSnapshotId string
    Snapshot ID for the root volume (for EBS-backed AMIs)
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    UsageOperation string
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    arn String
    ARN of the AMI.
    hypervisor String
    Hypervisor type of the image.
    id String
    The provider-assigned unique ID for this managed resource.
    imageOwnerAlias String
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    imageType String
    Type of image.
    manageEbsSnapshots Boolean
    ownerId String
    AWS account ID of the image owner.
    platform String
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platformDetails String
    Platform details associated with the billing code of the AMI.
    public_ Boolean
    Whether the image has public launch permissions.
    rootSnapshotId String
    Snapshot ID for the root volume (for EBS-backed AMIs)
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    usageOperation String
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    arn string
    ARN of the AMI.
    hypervisor string
    Hypervisor type of the image.
    id string
    The provider-assigned unique ID for this managed resource.
    imageOwnerAlias string
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    imageType string
    Type of image.
    manageEbsSnapshots boolean
    ownerId string
    AWS account ID of the image owner.
    platform string
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platformDetails string
    Platform details associated with the billing code of the AMI.
    public boolean
    Whether the image has public launch permissions.
    rootSnapshotId string
    Snapshot ID for the root volume (for EBS-backed AMIs)
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    usageOperation string
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    arn str
    ARN of the AMI.
    hypervisor str
    Hypervisor type of the image.
    id str
    The provider-assigned unique ID for this managed resource.
    image_owner_alias str
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    image_type str
    Type of image.
    manage_ebs_snapshots bool
    owner_id str
    AWS account ID of the image owner.
    platform str
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platform_details str
    Platform details associated with the billing code of the AMI.
    public bool
    Whether the image has public launch permissions.
    root_snapshot_id str
    Snapshot ID for the root volume (for EBS-backed AMIs)
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    usage_operation str
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    arn String
    ARN of the AMI.
    hypervisor String
    Hypervisor type of the image.
    id String
    The provider-assigned unique ID for this managed resource.
    imageOwnerAlias String
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    imageType String
    Type of image.
    manageEbsSnapshots Boolean
    ownerId String
    AWS account ID of the image owner.
    platform String
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platformDetails String
    Platform details associated with the billing code of the AMI.
    public Boolean
    Whether the image has public launch permissions.
    rootSnapshotId String
    Snapshot ID for the root volume (for EBS-backed AMIs)
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    usageOperation String
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.

    Look up Existing Ami Resource

    Get an existing Ami resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AmiState, opts?: CustomResourceOptions): Ami
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            architecture: Optional[str] = None,
            arn: Optional[str] = None,
            boot_mode: Optional[str] = None,
            deprecation_time: Optional[str] = None,
            description: Optional[str] = None,
            ebs_block_devices: Optional[Sequence[AmiEbsBlockDeviceArgs]] = None,
            ena_support: Optional[bool] = None,
            ephemeral_block_devices: Optional[Sequence[AmiEphemeralBlockDeviceArgs]] = None,
            hypervisor: Optional[str] = None,
            image_location: Optional[str] = None,
            image_owner_alias: Optional[str] = None,
            image_type: Optional[str] = None,
            imds_support: Optional[str] = None,
            kernel_id: Optional[str] = None,
            manage_ebs_snapshots: Optional[bool] = None,
            name: Optional[str] = None,
            owner_id: Optional[str] = None,
            platform: Optional[str] = None,
            platform_details: Optional[str] = None,
            public: Optional[bool] = None,
            ramdisk_id: Optional[str] = None,
            root_device_name: Optional[str] = None,
            root_snapshot_id: Optional[str] = None,
            sriov_net_support: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            tpm_support: Optional[str] = None,
            usage_operation: Optional[str] = None,
            virtualization_type: Optional[str] = None) -> Ami
    func GetAmi(ctx *Context, name string, id IDInput, state *AmiState, opts ...ResourceOption) (*Ami, error)
    public static Ami Get(string name, Input<string> id, AmiState? state, CustomResourceOptions? opts = null)
    public static Ami get(String name, Output<String> id, AmiState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Architecture string
    Machine architecture for created instances. Defaults to "x86_64".
    Arn string
    ARN of the AMI.
    BootMode string
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    DeprecationTime string
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    Description string
    Longer, human-readable description for the AMI.
    EbsBlockDevices List<AmiEbsBlockDevice>
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    EnaSupport bool
    Whether enhanced networking with ENA is enabled. Defaults to false.
    EphemeralBlockDevices List<AmiEphemeralBlockDevice>
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    Hypervisor string
    Hypervisor type of the image.
    ImageLocation string
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    ImageOwnerAlias string
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    ImageType string
    Type of image.
    ImdsSupport string
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    KernelId string
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    ManageEbsSnapshots bool
    Name string
    Region-unique name for the AMI.
    OwnerId string
    AWS account ID of the image owner.
    Platform string
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    PlatformDetails string
    Platform details associated with the billing code of the AMI.
    Public bool
    Whether the image has public launch permissions.
    RamdiskId string
    ID of an initrd image (ARI) that will be used when booting the created instances.
    RootDeviceName string
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    RootSnapshotId string
    Snapshot ID for the root volume (for EBS-backed AMIs)
    SriovNetSupport string
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    TpmSupport string
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    UsageOperation string
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    VirtualizationType string
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    Architecture string
    Machine architecture for created instances. Defaults to "x86_64".
    Arn string
    ARN of the AMI.
    BootMode string
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    DeprecationTime string
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    Description string
    Longer, human-readable description for the AMI.
    EbsBlockDevices []AmiEbsBlockDeviceArgs
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    EnaSupport bool
    Whether enhanced networking with ENA is enabled. Defaults to false.
    EphemeralBlockDevices []AmiEphemeralBlockDeviceArgs
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    Hypervisor string
    Hypervisor type of the image.
    ImageLocation string
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    ImageOwnerAlias string
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    ImageType string
    Type of image.
    ImdsSupport string
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    KernelId string
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    ManageEbsSnapshots bool
    Name string
    Region-unique name for the AMI.
    OwnerId string
    AWS account ID of the image owner.
    Platform string
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    PlatformDetails string
    Platform details associated with the billing code of the AMI.
    Public bool
    Whether the image has public launch permissions.
    RamdiskId string
    ID of an initrd image (ARI) that will be used when booting the created instances.
    RootDeviceName string
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    RootSnapshotId string
    Snapshot ID for the root volume (for EBS-backed AMIs)
    SriovNetSupport string
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    TpmSupport string
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    UsageOperation string
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    VirtualizationType string
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture String
    Machine architecture for created instances. Defaults to "x86_64".
    arn String
    ARN of the AMI.
    bootMode String
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecationTime String
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description String
    Longer, human-readable description for the AMI.
    ebsBlockDevices List<AmiEbsBlockDevice>
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    enaSupport Boolean
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeralBlockDevices List<AmiEphemeralBlockDevice>
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    hypervisor String
    Hypervisor type of the image.
    imageLocation String
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imageOwnerAlias String
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    imageType String
    Type of image.
    imdsSupport String
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernelId String
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    manageEbsSnapshots Boolean
    name String
    Region-unique name for the AMI.
    ownerId String
    AWS account ID of the image owner.
    platform String
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platformDetails String
    Platform details associated with the billing code of the AMI.
    public_ Boolean
    Whether the image has public launch permissions.
    ramdiskId String
    ID of an initrd image (ARI) that will be used when booting the created instances.
    rootDeviceName String
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    rootSnapshotId String
    Snapshot ID for the root volume (for EBS-backed AMIs)
    sriovNetSupport String
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    tpmSupport String
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    usageOperation String
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    virtualizationType String
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture string
    Machine architecture for created instances. Defaults to "x86_64".
    arn string
    ARN of the AMI.
    bootMode string
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecationTime string
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description string
    Longer, human-readable description for the AMI.
    ebsBlockDevices AmiEbsBlockDevice[]
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    enaSupport boolean
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeralBlockDevices AmiEphemeralBlockDevice[]
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    hypervisor string
    Hypervisor type of the image.
    imageLocation string
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imageOwnerAlias string
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    imageType string
    Type of image.
    imdsSupport string
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernelId string
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    manageEbsSnapshots boolean
    name string
    Region-unique name for the AMI.
    ownerId string
    AWS account ID of the image owner.
    platform string
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platformDetails string
    Platform details associated with the billing code of the AMI.
    public boolean
    Whether the image has public launch permissions.
    ramdiskId string
    ID of an initrd image (ARI) that will be used when booting the created instances.
    rootDeviceName string
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    rootSnapshotId string
    Snapshot ID for the root volume (for EBS-backed AMIs)
    sriovNetSupport string
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    tpmSupport string
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    usageOperation string
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    virtualizationType string
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture str
    Machine architecture for created instances. Defaults to "x86_64".
    arn str
    ARN of the AMI.
    boot_mode str
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecation_time str
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description str
    Longer, human-readable description for the AMI.
    ebs_block_devices Sequence[AmiEbsBlockDeviceArgs]
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    ena_support bool
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeral_block_devices Sequence[AmiEphemeralBlockDeviceArgs]
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    hypervisor str
    Hypervisor type of the image.
    image_location str
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    image_owner_alias str
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    image_type str
    Type of image.
    imds_support str
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernel_id str
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    manage_ebs_snapshots bool
    name str
    Region-unique name for the AMI.
    owner_id str
    AWS account ID of the image owner.
    platform str
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platform_details str
    Platform details associated with the billing code of the AMI.
    public bool
    Whether the image has public launch permissions.
    ramdisk_id str
    ID of an initrd image (ARI) that will be used when booting the created instances.
    root_device_name str
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    root_snapshot_id str
    Snapshot ID for the root volume (for EBS-backed AMIs)
    sriov_net_support str
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    tpm_support str
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    usage_operation str
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    virtualization_type str
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.
    architecture String
    Machine architecture for created instances. Defaults to "x86_64".
    arn String
    ARN of the AMI.
    bootMode String
    Boot mode of the AMI. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
    deprecationTime String
    Date and time to deprecate the AMI. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. Valid values: RFC3339 time string (YYYY-MM-DDTHH:MM:SSZ)
    description String
    Longer, human-readable description for the AMI.
    ebsBlockDevices List<Property Map>
    Nested block describing an EBS block device that should be attached to created instances. The structure of this block is described below.
    enaSupport Boolean
    Whether enhanced networking with ENA is enabled. Defaults to false.
    ephemeralBlockDevices List<Property Map>
    Nested block describing an ephemeral block device that should be attached to created instances. The structure of this block is described below.
    hypervisor String
    Hypervisor type of the image.
    imageLocation String
    Path to an S3 object containing an image manifest, e.g., created by the ec2-upload-bundle command in the EC2 command line tools.
    imageOwnerAlias String
    AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.
    imageType String
    Type of image.
    imdsSupport String
    If EC2 instances started from this image should require the use of the Instance Metadata Service V2 (IMDSv2), set this argument to v2.0. For more information, see Configure instance metadata options for new instances.
    kernelId String
    ID of the kernel image (AKI) that will be used as the paravirtual kernel in created instances.
    manageEbsSnapshots Boolean
    name String
    Region-unique name for the AMI.
    ownerId String
    AWS account ID of the image owner.
    platform String
    This value is set to windows for Windows AMIs; otherwise, it is blank.
    platformDetails String
    Platform details associated with the billing code of the AMI.
    public Boolean
    Whether the image has public launch permissions.
    ramdiskId String
    ID of an initrd image (ARI) that will be used when booting the created instances.
    rootDeviceName String
    Name of the root device (for example, /dev/sda1, or /dev/xvda).
    rootSnapshotId String
    Snapshot ID for the root volume (for EBS-backed AMIs)
    sriovNetSupport String
    When set to "simple" (the default), enables enhanced networking for created instances. No other value is supported at this time.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    tpmSupport String
    If the image is configured for NitroTPM support, the value is v2.0. For more information, see NitroTPM in the Amazon Elastic Compute Cloud User Guide.
    usageOperation String
    Operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
    virtualizationType String
    Keyword to choose what virtualization mode created instances will use. Can be either "paravirtual" (the default) or "hvm". The choice of virtualization type changes the set of further arguments that are required, as described below.

    Supporting Types

    AmiEbsBlockDevice, AmiEbsBlockDeviceArgs

    DeviceName string
    Path at which the device is exposed to created instances.
    DeleteOnTermination bool
    Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.
    Encrypted bool
    Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.
    Iops int
    Number of I/O operations per second the created volumes will support.
    OutpostArn string

    ARN of the Outpost on which the snapshot is stored.

    Note: You can specify encrypted or snapshot_id but not both.

    SnapshotId string
    ID of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.
    Throughput int
    Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.
    VolumeSize int
    Size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.
    VolumeType string
    Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).
    DeviceName string
    Path at which the device is exposed to created instances.
    DeleteOnTermination bool
    Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.
    Encrypted bool
    Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.
    Iops int
    Number of I/O operations per second the created volumes will support.
    OutpostArn string

    ARN of the Outpost on which the snapshot is stored.

    Note: You can specify encrypted or snapshot_id but not both.

    SnapshotId string
    ID of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.
    Throughput int
    Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.
    VolumeSize int
    Size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.
    VolumeType string
    Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).
    deviceName String
    Path at which the device is exposed to created instances.
    deleteOnTermination Boolean
    Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.
    encrypted Boolean
    Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.
    iops Integer
    Number of I/O operations per second the created volumes will support.
    outpostArn String

    ARN of the Outpost on which the snapshot is stored.

    Note: You can specify encrypted or snapshot_id but not both.

    snapshotId String
    ID of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.
    throughput Integer
    Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.
    volumeSize Integer
    Size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.
    volumeType String
    Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).
    deviceName string
    Path at which the device is exposed to created instances.
    deleteOnTermination boolean
    Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.
    encrypted boolean
    Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.
    iops number
    Number of I/O operations per second the created volumes will support.
    outpostArn string

    ARN of the Outpost on which the snapshot is stored.

    Note: You can specify encrypted or snapshot_id but not both.

    snapshotId string
    ID of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.
    throughput number
    Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.
    volumeSize number
    Size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.
    volumeType string
    Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).
    device_name str
    Path at which the device is exposed to created instances.
    delete_on_termination bool
    Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.
    encrypted bool
    Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.
    iops int
    Number of I/O operations per second the created volumes will support.
    outpost_arn str

    ARN of the Outpost on which the snapshot is stored.

    Note: You can specify encrypted or snapshot_id but not both.

    snapshot_id str
    ID of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.
    throughput int
    Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.
    volume_size int
    Size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.
    volume_type str
    Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).
    deviceName String
    Path at which the device is exposed to created instances.
    deleteOnTermination Boolean
    Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.
    encrypted Boolean
    Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.
    iops Number
    Number of I/O operations per second the created volumes will support.
    outpostArn String

    ARN of the Outpost on which the snapshot is stored.

    Note: You can specify encrypted or snapshot_id but not both.

    snapshotId String
    ID of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.
    throughput Number
    Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.
    volumeSize Number
    Size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.
    volumeType String
    Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).

    AmiEphemeralBlockDevice, AmiEphemeralBlockDeviceArgs

    DeviceName string
    Path at which the device is exposed to created instances.
    VirtualName string
    Name for the ephemeral device, of the form "ephemeralN" where N is a volume number starting from zero.
    DeviceName string
    Path at which the device is exposed to created instances.
    VirtualName string
    Name for the ephemeral device, of the form "ephemeralN" where N is a volume number starting from zero.
    deviceName String
    Path at which the device is exposed to created instances.
    virtualName String
    Name for the ephemeral device, of the form "ephemeralN" where N is a volume number starting from zero.
    deviceName string
    Path at which the device is exposed to created instances.
    virtualName string
    Name for the ephemeral device, of the form "ephemeralN" where N is a volume number starting from zero.
    device_name str
    Path at which the device is exposed to created instances.
    virtual_name str
    Name for the ephemeral device, of the form "ephemeralN" where N is a volume number starting from zero.
    deviceName String
    Path at which the device is exposed to created instances.
    virtualName String
    Name for the ephemeral device, of the form "ephemeralN" where N is a volume number starting from zero.

    Import

    Using pulumi import, import aws_ami using the ID of the AMI. For example:

    $ pulumi import aws:ec2/ami:Ami example ami-12345678
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi