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]

[src]

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

impl Debug for UpdateFacetRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateFacetRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations