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]

[src]

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

impl Debug for UntagResourceInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UntagResourceInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations