Struct rusoto_rds::Tag [] [src]

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

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

Fields

A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and cannot be prefixed with "aws:" or "rds:". The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', '/', '=', '+', '-' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$").

A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and cannot be prefixed with "aws:" or "rds:". The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', '/', '=', '+', '-' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$").

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.

impl Clone for Tag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more