pub struct ManagedPrefixList {
pub address_family: Option<String>,
pub max_entries: Option<i64>,
pub owner_id: Option<String>,
pub prefix_list_arn: Option<String>,
pub prefix_list_id: Option<String>,
pub prefix_list_name: Option<String>,
pub state: Option<String>,
pub state_message: Option<String>,
pub tags: Option<Vec<Tag>>,
pub version: Option<i64>,
}Expand description
Describes a managed prefix list.
Fields§
§address_family: Option<String>The IP address version.
max_entries: Option<i64>The maximum number of entries for the prefix list.
owner_id: Option<String>The ID of the owner of the prefix list.
prefix_list_arn: Option<String>The Amazon Resource Name (ARN) for the prefix list.
prefix_list_id: Option<String>The ID of the prefix list.
prefix_list_name: Option<String>The name of the prefix list.
state: Option<String>The state of the prefix list.
state_message: Option<String>The state message.
The tags for the prefix list.
version: Option<i64>The version of the prefix list.
Trait Implementations§
Source§impl Clone for ManagedPrefixList
impl Clone for ManagedPrefixList
Source§fn clone(&self) -> ManagedPrefixList
fn clone(&self) -> ManagedPrefixList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ManagedPrefixList
impl Debug for ManagedPrefixList
Source§impl Default for ManagedPrefixList
impl Default for ManagedPrefixList
Source§fn default() -> ManagedPrefixList
fn default() -> ManagedPrefixList
Returns the “default value” for a type. Read more
Source§impl PartialEq for ManagedPrefixList
impl PartialEq for ManagedPrefixList
impl StructuralPartialEq for ManagedPrefixList
Auto Trait Implementations§
impl Freeze for ManagedPrefixList
impl RefUnwindSafe for ManagedPrefixList
impl Send for ManagedPrefixList
impl Sync for ManagedPrefixList
impl Unpin for ManagedPrefixList
impl UnwindSafe for ManagedPrefixList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more