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]

[src]

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

impl Debug for DescribeDomainControllersRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDomainControllersRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations