Struct rusoto_clouddirectory::AddFacetToObjectRequest[][src]

pub struct AddFacetToObjectRequest {
    pub directory_arn: String,
    pub object_attribute_list: Option<Vec<AttributeKeyAndValue>>,
    pub object_reference: ObjectReference,
    pub schema_facet: SchemaFacet,
}

Fields

The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.

Attributes on the facet that you are adding to the object.

A reference to the object you are adding the specified facet to.

Identifiers for the facet that you are adding to the object. See SchemaFacet for details.

Trait Implementations

impl Default for AddFacetToObjectRequest
[src]

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

impl Debug for AddFacetToObjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddFacetToObjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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