[][src]Struct rusoto_efs::DescribeTagsRequest

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

Fields

file_system_id: String

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

marker: Option<String>

(Optional) An 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.

max_items: Option<i64>

(Optional) The maximum number of file system tags to return in the response. Currently, this number is automatically set to 100, and other values are ignored. The response is paginated at 100 per page if you have more than 100 tags.

Trait Implementations

impl Clone for DescribeTagsRequest[src]

impl Debug for DescribeTagsRequest[src]

impl Default for DescribeTagsRequest[src]

impl PartialEq<DescribeTagsRequest> for DescribeTagsRequest[src]

impl Serialize for DescribeTagsRequest[src]

impl StructuralPartialEq for DescribeTagsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.