Struct rusoto_clouddirectory::ListAttachedIndicesRequest[][src]

pub struct ListAttachedIndicesRequest {
    pub consistency_level: Option<String>,
    pub directory_arn: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub target_reference: ObjectReference,
}

Fields

The consistency level to use for this operation.

The ARN of the directory.

The maximum number of results to retrieve.

The pagination token.

A reference to the object that has indices attached.

Trait Implementations

impl Default for ListAttachedIndicesRequest
[src]

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

impl Debug for ListAttachedIndicesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListAttachedIndicesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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