Struct rusoto_efs::DescribeTagsResponse[][src]

pub struct DescribeTagsResponse {
    pub marker: Option<String>,
    pub next_marker: Option<String>,
    pub tags: Vec<Tag>,
}

Fields

If the request included a Marker, the response returns that value in this field.

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

Returns tags associated with the file system as an array of Tag objects.

Trait Implementations

impl Default for DescribeTagsResponse
[src]

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

impl Debug for DescribeTagsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeTagsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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