Struct rusoto_autoscaling::LaunchTemplateSpecification[][src]

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

Describes a launch template.

Fields

The ID of the launch template. You must specify either a template ID or a template name.

The name of the launch template. You must specify either a template name or a template ID.

The version number, $Latest, or $Default. If the value is $Latest, Auto Scaling selects the latest version of the launch template when launching instances. If the value is $Default, Auto Scaling selects the default version of the launch template when launching instances. The default value is $Default.

Trait Implementations

impl Default for LaunchTemplateSpecification
[src]

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

impl Debug for LaunchTemplateSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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