Struct rusoto_dynamodb::ListTagsOfResourceInput[][src]

pub struct ListTagsOfResourceInput {
    pub next_token: Option<String>,
    pub resource_arn: String,
}

Fields

An optional string that, if supplied, must be copied from the output of a previous call to ListTagOfResource. When provided in this manner, this API fetches the next page of results.

The Amazon DynamoDB resource with tags to be listed. This value is an Amazon Resource Name (ARN).

Trait Implementations

impl Default for ListTagsOfResourceInput
[src]

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

impl Debug for ListTagsOfResourceInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsOfResourceInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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