[][src]Struct rusoto_elb::PolicyAttributeTypeDescription

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

attribute_name: Option<String>

The name of the attribute.

attribute_type: Option<String>

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

cardinality: Option<String>

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

default_value: Option<String>

The default value of the attribute, if applicable.

description: Option<String>

A description of the attribute.

Trait Implementations

impl Clone for PolicyAttributeTypeDescription[src]

impl Debug for PolicyAttributeTypeDescription[src]

impl Default for PolicyAttributeTypeDescription[src]

impl PartialEq<PolicyAttributeTypeDescription> for PolicyAttributeTypeDescription[src]

impl StructuralPartialEq for PolicyAttributeTypeDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.