Struct aws_sdk_ec2::model::ManagedPrefixList [−][src]
#[non_exhaustive]pub struct ManagedPrefixList {
pub prefix_list_id: Option<String>,
pub address_family: Option<String>,
pub state: Option<PrefixListState>,
pub state_message: Option<String>,
pub prefix_list_arn: Option<String>,
pub prefix_list_name: Option<String>,
pub max_entries: Option<i32>,
pub version: Option<i64>,
pub tags: Option<Vec<Tag>>,
pub owner_id: Option<String>,
}
Expand description
Describes a managed prefix list.
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.prefix_list_id: Option<String>
The ID of the prefix list.
address_family: Option<String>
The IP address version.
state: Option<PrefixListState>
The current state of the prefix list.
state_message: Option<String>
The state message.
prefix_list_arn: Option<String>
The Amazon Resource Name (ARN) for the prefix list.
prefix_list_name: Option<String>
The name of the prefix list.
max_entries: Option<i32>
The maximum number of entries for the prefix list.
version: Option<i64>
The version of the prefix list.
The tags for the prefix list.
owner_id: Option<String>
The ID of the owner of the prefix list.
Implementations
The ID of the prefix list.
The IP address version.
The current state of the prefix list.
The state message.
The Amazon Resource Name (ARN) for the prefix list.
The name of the prefix list.
The maximum number of entries for the prefix list.
The tags for the prefix list.
Creates a new builder-style object to manufacture ManagedPrefixList
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 ManagedPrefixList
impl Send for ManagedPrefixList
impl Sync for ManagedPrefixList
impl Unpin for ManagedPrefixList
impl UnwindSafe for ManagedPrefixList
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