Struct rusoto_clouddirectory::RemoveFacetFromObjectRequest[][src]

pub struct RemoveFacetFromObjectRequest {
    pub directory_arn: String,
    pub object_reference: ObjectReference,
    pub schema_facet: SchemaFacet,
}

Fields

The ARN of the directory in which the object resides.

A reference to the object to remove the facet from.

The facet to remove. See SchemaFacet for details.

Trait Implementations

impl Default for RemoveFacetFromObjectRequest
[src]

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

impl Debug for RemoveFacetFromObjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveFacetFromObjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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