Struct rusoto_efs::DescribeMountTargetsRequest[][src]

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

Fields

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

(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.

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

(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.

Trait Implementations

impl Default for DescribeMountTargetsRequest
[src]

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

impl Debug for DescribeMountTargetsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeMountTargetsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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