Struct aws_sdk_elasticloadbalancing::model::PolicyAttributeTypeDescription [−][src]
#[non_exhaustive]pub struct PolicyAttributeTypeDescription {
pub attribute_name: Option<String>,
pub attribute_type: Option<String>,
pub description: Option<String>,
pub default_value: Option<String>,
pub cardinality: Option<String>,
}
Expand description
Information about a policy attribute type.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.attribute_name: Option<String>
The name of the attribute.
attribute_type: Option<String>
The type of the attribute. For example, Boolean
or Integer
.
description: Option<String>
A description of the attribute.
default_value: Option<String>
The default value of the attribute, if applicable.
cardinality: Option<String>
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
Implementations
The name of the attribute.
The type of the attribute. For example, Boolean
or Integer
.
A description of the attribute.
The default value of the attribute, if applicable.
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
Creates a new builder-style object to manufacture PolicyAttributeTypeDescription
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for PolicyAttributeTypeDescription
impl Sync for PolicyAttributeTypeDescription
impl Unpin for PolicyAttributeTypeDescription
impl UnwindSafe for PolicyAttributeTypeDescription
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more