[][src]Struct rusoto_ec2::FleetLaunchTemplateSpecification

pub struct FleetLaunchTemplateSpecification {
    pub launch_template_id: Option<String>,
    pub launch_template_name: Option<String>,
    pub version: Option<String>,
}

Describes the Amazon EC2 launch template and the launch template version that can be used by a Spot Fleet request to configure Amazon EC2 instances. For information about launch templates, see Launching an instance from a launch template in the Amazon EC2 User Guide for Linux Instances.

Fields

launch_template_id: Option<String>

The ID of the launch template. If you specify the template ID, you can't specify the template name.

launch_template_name: Option<String>

The name of the launch template. If you specify the template name, you can't specify the template ID.

version: Option<String>

The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.

Trait Implementations

impl Clone for FleetLaunchTemplateSpecification[src]

impl Debug for FleetLaunchTemplateSpecification[src]

impl Default for FleetLaunchTemplateSpecification[src]

impl PartialEq<FleetLaunchTemplateSpecification> for FleetLaunchTemplateSpecification[src]

impl StructuralPartialEq for FleetLaunchTemplateSpecification[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.