Struct rusoto_clouddirectory::FacetAttribute [] [src]

pub struct FacetAttribute {
    pub attribute_definition: Option<FacetAttributeDefinition>,
    pub attribute_reference: Option<FacetAttributeReference>,
    pub name: String,
    pub required_behavior: Option<String>,
}

An attribute that is associated with the Facet.

Fields

A facet attribute consists of either a definition or a reference. This structure contains the attribute definition. See Attribute References for more information.

An attribute reference that is associated with the attribute. See Attribute References for more information.

The name of the facet attribute.

The required behavior of the FacetAttribute.

Trait Implementations

impl Default for FacetAttribute
[src]

[src]

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

impl Debug for FacetAttribute
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for FacetAttribute
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations