Struct rusoto_ec2::LaunchTemplate [] [src]

pub struct LaunchTemplate {
    pub create_time: Option<String>,
    pub created_by: Option<String>,
    pub default_version_number: Option<i64>,
    pub latest_version_number: Option<i64>,
    pub launch_template_id: Option<String>,
    pub launch_template_name: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Describes a launch template.

Fields

The time launch template was created.

The principal that created the launch template.

The version number of the default version of the launch template.

The version number of the latest version of the launch template.

The ID of the launch template.

The name of the launch template.

The tags for the launch template.

Trait Implementations

impl Default for LaunchTemplate
[src]

[src]

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

impl Debug for LaunchTemplate
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplate
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations