pub struct SubnetCidrReservationResult {
pub cidr_block: Output<String>,
pub description: Output<Option<String>>,
pub owner_id: Output<String>,
pub reservation_type: Output<String>,
pub subnet_id: Output<String>,
}
Fields§
§cidr_block: Output<String>
The CIDR block for the reservation.
description: Output<Option<String>>
A brief description of the reservation.
owner_id: Output<String>
ID of the AWS account that owns this CIDR reservation.
reservation_type: Output<String>
The type of reservation to create. Valid values: explicit
, prefix
subnet_id: Output<String>
The ID of the subnet to create the reservation for.
Auto Trait Implementations§
impl Freeze for SubnetCidrReservationResult
impl RefUnwindSafe for SubnetCidrReservationResult
impl Send for SubnetCidrReservationResult
impl Sync for SubnetCidrReservationResult
impl Unpin for SubnetCidrReservationResult
impl UnwindSafe for SubnetCidrReservationResult
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