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]

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

impl Debug for ConfigurationTag
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigurationTag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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