Struct rusoto_ec2::FleetLaunchTemplateSpecification[][src]

pub struct FleetLaunchTemplateSpecification {
    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. By default, the default version of the launch template is used.

Trait Implementations

impl Default for FleetLaunchTemplateSpecification
[src]

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

impl Debug for FleetLaunchTemplateSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for FleetLaunchTemplateSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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