Struct rusoto_clouddirectory::ListIndexRequest [] [src]

pub struct ListIndexRequest {
    pub consistency_level: Option<String>,
    pub directory_arn: String,
    pub index_reference: ObjectReference,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub ranges_on_indexed_values: Option<Vec<ObjectAttributeRange>>,
}

Fields

The consistency level to execute the request at.

The ARN of the directory that the index exists in.

The reference to the index to list.

The maximum number of results to retrieve from the index.

The pagination token.

Specifies the ranges of indexed values that you want to query.

Trait Implementations

impl Default for ListIndexRequest
[src]

[src]

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

impl Debug for ListIndexRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListIndexRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations