Struct rusoto_ec2::LaunchTemplateOverrides[][src]

pub struct LaunchTemplateOverrides {
    pub availability_zone: Option<String>,
    pub instance_type: Option<String>,
    pub spot_price: Option<String>,
    pub subnet_id: Option<String>,
    pub weighted_capacity: Option<f64>,
}

Describes overrides for a launch template.

Fields

The Availability Zone in which to launch the instances.

The instance type.

The maximum price per unit hour that you are willing to pay for a Spot Instance.

The ID of the subnet in which to launch the instances.

The number of units provided by the specified instance type.

Trait Implementations

impl Default for LaunchTemplateOverrides
[src]

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

impl Debug for LaunchTemplateOverrides
[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateOverrides
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LaunchTemplateOverrides
[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