Struct rusoto_clouddirectory::TypedLinkAttributeDefinition [] [src]

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

A typed link attribute definition.

Fields

The default value of the attribute (if configured).

Whether the attribute is mutable or not.

The unique name of the typed link attribute.

The required behavior of the TypedLinkAttributeDefinition.

Validation rules that are attached to the attribute definition.

The type of the attribute.

Trait Implementations

impl Default for TypedLinkAttributeDefinition
[src]

[src]

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

impl Debug for TypedLinkAttributeDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TypedLinkAttributeDefinition
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations