[][src]Struct rusoto_ds::DescribeDirectoriesRequest

pub struct DescribeDirectoriesRequest {
    pub directory_ids: Option<Vec<String>>,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
}

Contains the inputs for the DescribeDirectories operation.

Fields

directory_ids: Option<Vec<String>>

A list of identifiers of the directories for which to obtain the information. If this member is null, all directories that belong to the current account are returned.

An empty list results in an InvalidParameterException being thrown.

limit: Option<i64>

The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.

next_token: Option<String>

The DescribeDirectoriesResult.NextToken value from a previous call to DescribeDirectories. Pass null if this is the first call.

Trait Implementations

impl Clone for DescribeDirectoriesRequest[src]

impl Debug for DescribeDirectoriesRequest[src]

impl Default for DescribeDirectoriesRequest[src]

impl PartialEq<DescribeDirectoriesRequest> for DescribeDirectoriesRequest[src]

impl Serialize for DescribeDirectoriesRequest[src]

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