Struct rusoto_opsworks::TagResourceRequest [] [src]

pub struct TagResourceRequest {
    pub resource_arn: String,
    pub tags: HashMap<String, String>,
}

Fields

The stack or layer's Amazon Resource Number (ARN).

A map that contains tag keys and tag values that are attached to a stack or layer.

  • The key cannot be empty.

  • The key can be a maximum of 127 characters, and can contain only Unicode letters, numbers, or separators, or the following special characters: + - = . _ : /

  • The value can be a maximum 255 characters, and contain only Unicode letters, numbers, or separators, or the following special characters: + - = . _ : /

  • Leading and trailing white spaces are trimmed from both the key and value.

  • A maximum of 40 tags is allowed for any resource.

Trait Implementations

impl Default for TagResourceRequest
[src]

[src]

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

impl Debug for TagResourceRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TagResourceRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations