Struct rusoto_ds::DescribeDomainControllersRequest[][src]

pub struct DescribeDomainControllersRequest {
    pub directory_id: String,
    pub domain_controller_ids: Option<Vec<String>>,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
}

Fields

Identifier of the directory for which to retrieve the domain controller information.

A list of identifiers for the domain controllers whose information will be provided.

The maximum number of items to return.

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

Trait Implementations

impl Default for DescribeDomainControllersRequest
[src]

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

impl Debug for DescribeDomainControllersRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDomainControllersRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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