Struct rusoto_dynamodb::TagResourceInput[][src]

pub struct TagResourceInput {
    pub resource_arn: String,
    pub tags: Vec<Tag>,
}

Fields

Identifies the Amazon DynamoDB resource to which tags should be added. This value is an Amazon Resource Name (ARN).

The tags to be assigned to the Amazon DynamoDB resource.

Trait Implementations

impl Default for TagResourceInput
[src]

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

impl Debug for TagResourceInput
[src]

Formats the value using the given formatter. Read more

impl Clone for TagResourceInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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