Struct rusoto_autoscaling::Tag[][src]

pub struct Tag {
    pub key: String,
    pub propagate_at_launch: Option<bool>,
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
    pub value: Option<String>,
}

Describes a tag for an Auto Scaling group.

Fields

The tag key.

Determines whether the tag is added to new instances as they are launched in the group.

The name of the group.

The type of resource. The only supported value is auto-scaling-group.

The tag value.

Trait Implementations

impl Default for Tag
[src]

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

impl Debug for Tag
[src]

Formats the value using the given formatter. Read more

impl Clone for Tag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Tag

impl Sync for Tag