Struct rusoto_efs::DescribeTagsRequest[][src]

pub struct DescribeTagsRequest {
    pub file_system_id: String,
    pub marker: Option<String>,
    pub max_items: Option<i64>,
}

Fields

ID of the file system whose tag set you want to retrieve.

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

Trait Implementations

impl Default for DescribeTagsRequest
[src]

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

impl Debug for DescribeTagsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeTagsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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