Struct rusoto_elb::PolicyAttributeTypeDescription [] [src]

pub struct PolicyAttributeTypeDescription {
    pub attribute_name: Option<AttributeName>,
    pub attribute_type: Option<AttributeType>,
    pub cardinality: Option<Cardinality>,
    pub default_value: Option<DefaultValue>,
    pub description: Option<Description>,
}

Information about a policy attribute type.

Fields

The name of the attribute.

The type of the attribute. For example, Boolean or Integer.

The cardinality of the attribute.

Valid values:

  • ONE(1) : Single value required

  • ZERO_OR_ONE(0..1) : Up to one value is allowed

  • ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed

  • ONE_OR_MORE(1..*0) : Required. Multiple values are allowed

The default value of the attribute, if applicable.

A description of the attribute.

Trait Implementations

impl Default for PolicyAttributeTypeDescription
[src]

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

impl Debug for PolicyAttributeTypeDescription
[src]

Formats the value using the given formatter.

impl Clone for PolicyAttributeTypeDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more