#[non_exhaustive]pub struct PolicyTypeDescription {
pub policy_type_name: Option<String>,
pub description: Option<String>,
pub policy_attribute_type_descriptions: Option<Vec<PolicyAttributeTypeDescription>>,
}
Expand description
Information about a policy 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.policy_type_name: Option<String>
The name of the policy type.
description: Option<String>
A description of the policy type.
policy_attribute_type_descriptions: Option<Vec<PolicyAttributeTypeDescription>>
The description of the policy attributes associated with the policies defined by Elastic Load Balancing.
Implementations
The name of the policy type.
A description of the policy type.
pub fn policy_attribute_type_descriptions(
&self
) -> Option<&[PolicyAttributeTypeDescription]>
pub fn policy_attribute_type_descriptions(
&self
) -> Option<&[PolicyAttributeTypeDescription]>
The description of the policy attributes associated with the policies defined by Elastic Load Balancing.
Creates a new builder-style object to manufacture PolicyTypeDescription
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 RefUnwindSafe for PolicyTypeDescription
impl Send for PolicyTypeDescription
impl Sync for PolicyTypeDescription
impl Unpin for PolicyTypeDescription
impl UnwindSafe for PolicyTypeDescription
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