Struct rusoto_discovery::ConfigurationTag [] [src]

pub struct ConfigurationTag {
    pub configuration_id: Option<String>,
    pub configuration_type: Option<String>,
    pub key: Option<String>,
    pub time_of_creation: Option<f64>,
    pub value: Option<String>,
}

Tags for a configuration item. Tags are metadata that help you categorize IT assets.

Fields

The configuration ID for the item to tag. You can specify a list of keys and values.

A type of IT asset to tag.

A type of tag on which to filter. For example, serverType.

The time the configuration tag was created in Coordinated Universal Time (UTC).

A value on which to filter. For example key = serverType and value = web server.

Trait Implementations

impl Default for ConfigurationTag
[src]

[src]

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

impl Debug for ConfigurationTag
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigurationTag
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations