pub struct ByoipCidr {
pub cidr: Option<String>,
pub description: Option<String>,
pub state: Option<String>,
pub status_message: Option<String>,
}Expand description
Information about an address range that is provisioned for use with your AWS resources through bring your own IP addresses (BYOIP).
Fields§
§cidr: Option<String>The address range, in CIDR notation.
description: Option<String>The description of the address range.
state: Option<String>The state of the address pool.
status_message: Option<String>Upon success, contains the ID of the address pool. Otherwise, contains an error message.
Trait Implementations§
impl StructuralPartialEq for ByoipCidr
Auto Trait Implementations§
impl Freeze for ByoipCidr
impl RefUnwindSafe for ByoipCidr
impl Send for ByoipCidr
impl Sync for ByoipCidr
impl Unpin for ByoipCidr
impl UnwindSafe for ByoipCidr
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