[][src]Struct rusoto_efs::DescribeAccessPointsRequest

pub struct DescribeAccessPointsRequest {
    pub access_point_id: Option<String>,
    pub file_system_id: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

access_point_id: Option<String>

(Optional) Specifies an EFS access point to describe in the response; mutually exclusive with FileSystemId.

file_system_id: Option<String>

(Optional) If you provide a FileSystemId, EFS returns all access points for that file system; mutually exclusive with AccessPointId.

max_results: Option<i64>

(Optional) When retrieving all access points for a file system, you can optionally specify the MaxItems parameter to limit the number of objects returned in a response. The default value is 100.

next_token: Option<String>

NextToken is present if the response is paginated. You can use NextMarker in the subsequent request to fetch the next page of access point descriptions.

Trait Implementations

impl Clone for DescribeAccessPointsRequest[src]

impl Debug for DescribeAccessPointsRequest[src]

impl Default for DescribeAccessPointsRequest[src]

impl PartialEq<DescribeAccessPointsRequest> for DescribeAccessPointsRequest[src]

impl Serialize for DescribeAccessPointsRequest[src]

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