[][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

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.

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.

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]

Performs copy-assignment from source. Read more

impl Default for DescribeDirectoriesRequest
[src]

impl PartialEq<DescribeDirectoriesRequest> for DescribeDirectoriesRequest
[src]

impl Debug for DescribeDirectoriesRequest
[src]

impl Serialize for DescribeDirectoriesRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T