Struct rusoto_ec2::ResponseLaunchTemplateData[][src]

pub struct ResponseLaunchTemplateData {
    pub block_device_mappings: Option<Vec<LaunchTemplateBlockDeviceMapping>>,
    pub credit_specification: Option<CreditSpecification>,
    pub disable_api_termination: Option<bool>,
    pub ebs_optimized: Option<bool>,
    pub elastic_gpu_specifications: Option<Vec<ElasticGpuSpecificationResponse>>,
    pub iam_instance_profile: Option<LaunchTemplateIamInstanceProfileSpecification>,
    pub image_id: Option<String>,
    pub instance_initiated_shutdown_behavior: Option<String>,
    pub instance_market_options: Option<LaunchTemplateInstanceMarketOptions>,
    pub instance_type: Option<String>,
    pub kernel_id: Option<String>,
    pub key_name: Option<String>,
    pub monitoring: Option<LaunchTemplatesMonitoring>,
    pub network_interfaces: Option<Vec<LaunchTemplateInstanceNetworkInterfaceSpecification>>,
    pub placement: Option<LaunchTemplatePlacement>,
    pub ram_disk_id: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub security_groups: Option<Vec<String>>,
    pub tag_specifications: Option<Vec<LaunchTemplateTagSpecification>>,
    pub user_data: Option<String>,
}

The information for a launch template.

Fields

The block device mappings.

The credit option for CPU usage of the instance.

If set to true, indicates that the instance cannot be terminated using the Amazon EC2 console, command line tool, or API.

Indicates whether the instance is optimized for Amazon EBS I/O.

The elastic GPU specification.

The IAM instance profile.

The ID of the AMI that was used to launch the instance.

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

The market (purchasing) option for the instances.

The instance type.

The ID of the kernel, if applicable.

The name of the key pair.

The monitoring for the instance.

The network interfaces.

The placement of the instance.

The ID of the RAM disk, if applicable.

The security group IDs.

The security group names.

The tags.

The user data for the instance.

Trait Implementations

impl Default for ResponseLaunchTemplateData
[src]

Returns the "default value" for a type. Read more

impl Debug for ResponseLaunchTemplateData
[src]

Formats the value using the given formatter. Read more

impl Clone for ResponseLaunchTemplateData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResponseLaunchTemplateData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations