Struct rusoto_clouddirectory::CreateIndexRequest [] [src]

pub struct CreateIndexRequest {
    pub directory_arn: String,
    pub is_unique: bool,
    pub link_name: Option<String>,
    pub ordered_indexed_attribute_list: Vec<AttributeKey>,
    pub parent_reference: Option<ObjectReference>,
}

Fields

The ARN of the directory where the index should be created.

Indicates whether the attribute that is being indexed has unique values or not.

The name of the link between the parent object and the index object.

Specifies the attributes that should be indexed on. Currently only a single attribute is supported.

A reference to the parent object that contains the index object.

Trait Implementations

impl Default for CreateIndexRequest
[src]

[src]

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

impl Debug for CreateIndexRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateIndexRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations