Struct rusoto_clouddirectory::UpdateFacetRequest[][src]

pub struct UpdateFacetRequest {
    pub attribute_updates: Option<Vec<FacetAttributeUpdate>>,
    pub name: String,
    pub object_type: Option<String>,
    pub schema_arn: String,
}

Fields

List of attributes that need to be updated in a given schema Facet. Each attribute is followed by AttributeAction, which specifies the type of update operation to perform.

The name of the facet.

The object type that is associated with the facet. See CreateFacetRequest$ObjectType for more details.

The Amazon Resource Name (ARN) that is associated with the Facet. For more information, see arns.

Trait Implementations

impl Default for UpdateFacetRequest
[src]

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

impl Debug for UpdateFacetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateFacetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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