Struct aws_sdk_ec2::types::CoipCidr
source · #[non_exhaustive]pub struct CoipCidr {
pub cidr: Option<String>,
pub coip_pool_id: Option<String>,
pub local_gateway_route_table_id: Option<String>,
}
Expand description
Information about a customer-owned IP address range.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cidr: Option<String>
An address range in a customer-owned IP address space.
coip_pool_id: Option<String>
The ID of the address pool.
local_gateway_route_table_id: Option<String>
The ID of the local gateway route table.
Implementations§
Trait Implementations§
source§impl PartialEq<CoipCidr> for CoipCidr
impl PartialEq<CoipCidr> for CoipCidr
impl StructuralPartialEq for CoipCidr
Auto Trait Implementations§
impl RefUnwindSafe for CoipCidr
impl Send for CoipCidr
impl Sync for CoipCidr
impl Unpin for CoipCidr
impl UnwindSafe for CoipCidr
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