[][src]Struct rusoto_ec2::RequestLaunchTemplateData

pub struct RequestLaunchTemplateData {
    pub block_device_mappings: Option<Vec<LaunchTemplateBlockDeviceMappingRequest>>,
    pub capacity_reservation_specification: Option<LaunchTemplateCapacityReservationSpecificationRequest>,
    pub cpu_options: Option<LaunchTemplateCpuOptionsRequest>,
    pub credit_specification: Option<CreditSpecificationRequest>,
    pub disable_api_termination: Option<bool>,
    pub ebs_optimized: Option<bool>,
    pub elastic_gpu_specifications: Option<Vec<ElasticGpuSpecification>>,
    pub elastic_inference_accelerators: Option<Vec<LaunchTemplateElasticInferenceAccelerator>>,
    pub hibernation_options: Option<LaunchTemplateHibernationOptionsRequest>,
    pub iam_instance_profile: Option<LaunchTemplateIamInstanceProfileSpecificationRequest>,
    pub image_id: Option<String>,
    pub instance_initiated_shutdown_behavior: Option<String>,
    pub instance_market_options: Option<LaunchTemplateInstanceMarketOptionsRequest>,
    pub instance_type: Option<String>,
    pub kernel_id: Option<String>,
    pub key_name: Option<String>,
    pub license_specifications: Option<Vec<LaunchTemplateLicenseConfigurationRequest>>,
    pub monitoring: Option<LaunchTemplatesMonitoringRequest>,
    pub network_interfaces: Option<Vec<LaunchTemplateInstanceNetworkInterfaceSpecificationRequest>>,
    pub placement: Option<LaunchTemplatePlacementRequest>,
    pub ram_disk_id: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub security_groups: Option<Vec<String>>,
    pub tag_specifications: Option<Vec<LaunchTemplateTagSpecificationRequest>>,
    pub user_data: Option<String>,
}

The information to include in the launch template.

Fields

block_device_mappings: Option<Vec<LaunchTemplateBlockDeviceMappingRequest>>

The block device mapping.

Supplying both a snapshot ID and an encryption value as arguments for block-device mapping results in an error. This is because only blank volumes can be encrypted on start, and these are not created from a snapshot. If a snapshot is the basis for the volume, it contains data by definition and its encryption status cannot be changed using this action.

capacity_reservation_specification: Option<LaunchTemplateCapacityReservationSpecificationRequest>

The Capacity Reservation targeting option. If you do not specify this parameter, the instance's Capacity Reservation preference defaults to open, which enables it to run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

cpu_options: Option<LaunchTemplateCpuOptionsRequest>

The CPU options for the instance. For more information, see Optimizing CPU Options in the Amazon Elastic Compute Cloud User Guide.

credit_specification: Option<CreditSpecificationRequest>

The credit option for CPU usage of the instance. Valid for T2 or T3 instances only.

disable_api_termination: Option<bool>

If set to true, you can't terminate the instance using the Amazon EC2 console, CLI, or API. To change this attribute to false after launch, use ModifyInstanceAttribute.

ebs_optimized: Option<bool>

Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS-optimized instance.

elastic_gpu_specifications: Option<Vec<ElasticGpuSpecification>>

An elastic GPU to associate with the instance.

elastic_inference_accelerators: Option<Vec<LaunchTemplateElasticInferenceAccelerator>>

The elastic inference accelerator for the instance.

hibernation_options: Option<LaunchTemplateHibernationOptionsRequest>

Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. Hibernation is currently supported only for Amazon Linux. For more information, see Hibernate Your Instance in the Amazon Elastic Compute Cloud User Guide.

iam_instance_profile: Option<LaunchTemplateIamInstanceProfileSpecificationRequest>

The IAM instance profile.

image_id: Option<String>

The ID of the AMI, which you can get by using DescribeImages.

instance_initiated_shutdown_behavior: Option<String>

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

Default: stop

instance_market_options: Option<LaunchTemplateInstanceMarketOptionsRequest>

The market (purchasing) option for the instances.

instance_type: Option<String>

The instance type. For more information, see Instance Types in the Amazon Elastic Compute Cloud User Guide.

kernel_id: Option<String>

The ID of the kernel.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User Provided Kernels in the Amazon Elastic Compute Cloud User Guide.

key_name: Option<String>

The name of the key pair. You can create a key pair using CreateKeyPair or ImportKeyPair.

If you do not specify a key pair, you can't connect to the instance unless you choose an AMI that is configured to allow users another way to log in.

license_specifications: Option<Vec<LaunchTemplateLicenseConfigurationRequest>>

The license configurations.

monitoring: Option<LaunchTemplatesMonitoringRequest>

The monitoring for the instance.

network_interfaces: Option<Vec<LaunchTemplateInstanceNetworkInterfaceSpecificationRequest>>

One or more network interfaces.

placement: Option<LaunchTemplatePlacementRequest>

The placement for the instance.

ram_disk_id: Option<String>

The ID of the RAM disk.

We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User Provided Kernels in the Amazon Elastic Compute Cloud User Guide.

security_group_ids: Option<Vec<String>>

One or more security group IDs. You can create a security group using CreateSecurityGroup. You cannot specify both a security group ID and security name in the same request.

security_groups: Option<Vec<String>>

[EC2-Classic, default VPC] One or more security group names. For a nondefault VPC, you must use security group IDs instead. You cannot specify both a security group ID and security name in the same request.

tag_specifications: Option<Vec<LaunchTemplateTagSpecificationRequest>>

The tags to apply to the resources during launch. You can only tag instances and volumes on launch. The specified tags are applied to all instances or volumes that are created during launch. To tag a resource after it has been created, see CreateTags.

user_data: Option<String>

The Base64-encoded user data to make available to the instance. For more information, see Running Commands on Your Linux Instance at Launch (Linux) and Adding User Data (Windows).

Trait Implementations

impl PartialEq<RequestLaunchTemplateData> for RequestLaunchTemplateData[src]

impl Default for RequestLaunchTemplateData[src]

impl Clone for RequestLaunchTemplateData[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RequestLaunchTemplateData[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self