Struct rusoto_clouddirectory::BatchCreateIndex [] [src]

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

Creates an index object inside of a BatchRead operation. For more information, see CreateIndex and BatchReadRequest$Operations.

Fields

The batch reference name. See Batches for more information.

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 BatchCreateIndex
[src]

[src]

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

impl Debug for BatchCreateIndex
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BatchCreateIndex
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations