Struct rusoto_storagegateway::ListTagsForResourceOutput[][src]

pub struct ListTagsForResourceOutput {
    pub marker: Option<String>,
    pub resource_arn: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

ListTagsForResourceOutput

Fields

An opaque string that indicates the position at which to stop returning the list of tags.

he Amazon Resource Name (ARN) of the resource for which you want to list tags.

An array that contains the tags for the specified resource.

Trait Implementations

impl Default for ListTagsForResourceOutput
[src]

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

impl Debug for ListTagsForResourceOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsForResourceOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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