[][src]Struct rusoto_efs::DescribeMountTargetsRequest

pub struct DescribeMountTargetsRequest {
    pub access_point_id: Option<String>,
    pub file_system_id: Option<String>,
    pub marker: Option<String>,
    pub max_items: Option<i64>,
    pub mount_target_id: Option<String>,
}

Fields

access_point_id: Option<String>

(Optional) The ID of the access point whose mount targets that you want to list. It must be included in your request if a FileSystemId or MountTargetId is not included in your request. Accepts either an access point ID or ARN as input.

file_system_id: Option<String>

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if an AccessPointId or MountTargetId is not included. Accepts either a file system ID or ARN as input.

marker: Option<String>

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

max_items: Option<i64>

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

mount_target_id: Option<String>

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included. Accepts either a mount target ID or ARN as input.

Trait Implementations

impl Clone for DescribeMountTargetsRequest[src]

impl Debug for DescribeMountTargetsRequest[src]

impl Default for DescribeMountTargetsRequest[src]

impl PartialEq<DescribeMountTargetsRequest> for DescribeMountTargetsRequest[src]

impl Serialize for DescribeMountTargetsRequest[src]

impl StructuralPartialEq for DescribeMountTargetsRequest[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.