Struct rusoto_elb::PolicyAttributeTypeDescription[][src]

pub struct PolicyAttributeTypeDescription {
    pub attribute_name: Option<String>,
    pub attribute_type: Option<String>,
    pub cardinality: Option<String>,
    pub default_value: Option<String>,
    pub description: Option<String>,
}

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

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

  • ZEROORMORE(0..) : Optional. Multiple values are allowed

  • ONEORMORE(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. Read more

impl Clone for PolicyAttributeTypeDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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