Struct rusoto_dax::Tag [] [src]

pub struct Tag {
    pub key: Option<String>,
    pub value: Option<String>,
}

A description of a tag. Every tag is a key-value pair. You can add up to 50 tags to a single DAX cluster.

AWS-assigned tag names and values are automatically assigned the aws: prefix, which the user cannot assign. AWS-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the prefix user:.

You cannot backdate the application of a tag.

Fields

The key for the tag. Tag keys are case sensitive. Every DAX cluster can only have one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.

The value of the tag. Tag values are case-sensitive and can be null.

Trait Implementations

impl Default for Tag
[src]

[src]

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

impl Debug for Tag
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Tag
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Tag

impl Sync for Tag