Struct aws_sdk_ec2::model::ManagedPrefixList
source · [−]#[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
sourceimpl ManagedPrefixList
impl ManagedPrefixList
sourcepub fn prefix_list_id(&self) -> Option<&str>
pub fn prefix_list_id(&self) -> Option<&str>
The ID of the prefix list.
sourcepub fn address_family(&self) -> Option<&str>
pub fn address_family(&self) -> Option<&str>
The IP address version.
sourcepub fn state(&self) -> Option<&PrefixListState>
pub fn state(&self) -> Option<&PrefixListState>
The current state of the prefix list.
sourcepub fn state_message(&self) -> Option<&str>
pub fn state_message(&self) -> Option<&str>
The state message.
sourcepub fn prefix_list_arn(&self) -> Option<&str>
pub fn prefix_list_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the prefix list.
sourcepub fn prefix_list_name(&self) -> Option<&str>
pub fn prefix_list_name(&self) -> Option<&str>
The name of the prefix list.
sourcepub fn max_entries(&self) -> Option<i32>
pub fn max_entries(&self) -> Option<i32>
The maximum number of entries for the prefix list.
The tags for the prefix list.
sourceimpl ManagedPrefixList
impl ManagedPrefixList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ManagedPrefixList
.
Trait Implementations
sourceimpl Clone for ManagedPrefixList
impl Clone for ManagedPrefixList
sourcefn clone(&self) -> ManagedPrefixList
fn clone(&self) -> ManagedPrefixList
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ManagedPrefixList
impl Debug for ManagedPrefixList
sourceimpl PartialEq<ManagedPrefixList> for ManagedPrefixList
impl PartialEq<ManagedPrefixList> for ManagedPrefixList
sourcefn eq(&self, other: &ManagedPrefixList) -> bool
fn eq(&self, other: &ManagedPrefixList) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ManagedPrefixList) -> bool
fn ne(&self, other: &ManagedPrefixList) -> bool
This method tests for !=
.
impl StructuralPartialEq for ManagedPrefixList
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more