Struct rusoto_clouddirectory::IndexAttachment[][src]

pub struct IndexAttachment {
    pub indexed_attributes: Option<Vec<AttributeKeyAndValue>>,
    pub object_identifier: Option<String>,
}

Represents an index and an attached object.

Fields

The indexed attribute values.

In response to ListIndex, the ObjectIdentifier of the object attached to the index. In response to ListAttachedIndices, the ObjectIdentifier of the index attached to the object. This field will always contain the ObjectIdentifier of the object on the opposite side of the attachment specified in the query.

Trait Implementations

impl Default for IndexAttachment
[src]

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

impl Debug for IndexAttachment
[src]

Formats the value using the given formatter. Read more

impl Clone for IndexAttachment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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