Struct rusoto_clouddirectory::FacetAttributeDefinition [] [src]

pub struct FacetAttributeDefinition {
    pub default_value: Option<TypedAttributeValue>,
    pub is_immutable: Option<bool>,
    pub rules: Option<HashMap<String, Rule>>,
    pub type_: String,
}

A facet attribute definition. See Attribute References for more information.

Fields

The default value of the attribute (if configured).

Whether the attribute is mutable or not.

Validation rules attached to the attribute definition.

The type of the attribute.

Trait Implementations

impl Default for FacetAttributeDefinition
[src]

[src]

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

impl Debug for FacetAttributeDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for FacetAttributeDefinition
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations