Struct rusoto_dynamodb::UntagResourceInput[][src]

pub struct UntagResourceInput {
    pub resource_arn: String,
    pub tag_keys: Vec<String>,
}

Fields

The Amazon DyanamoDB resource the tags will be removed from. This value is an Amazon Resource Name (ARN).

A list of tag keys. Existing tags of the resource whose keys are members of this list will be removed from the Amazon DynamoDB resource.

Trait Implementations

impl Default for UntagResourceInput
[src]

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

impl Debug for UntagResourceInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UntagResourceInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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