Struct rusoto_ds::DescribeDirectoriesRequest[][src]

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 Default for DescribeDirectoriesRequest
[src]

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

impl Debug for DescribeDirectoriesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDirectoriesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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