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]

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

impl Debug for TagResourceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for TagResourceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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