[][src]Struct rusoto_ec2::ResponseLaunchTemplateData

pub struct ResponseLaunchTemplateData {
    pub block_device_mappings: Option<Vec<LaunchTemplateBlockDeviceMapping>>,
    pub cpu_options: Option<LaunchTemplateCpuOptions>,
    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 CPU options for the instance. For more information, see Optimizing CPU Options in the Amazon Elastic Compute Cloud User Guide.

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 PartialEq<ResponseLaunchTemplateData> for ResponseLaunchTemplateData
[src]

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

This method tests for !=.

impl Clone for ResponseLaunchTemplateData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResponseLaunchTemplateData
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T