Struct aws_sdk_ec2::model::SubnetCidrReservation [−][src]
#[non_exhaustive]pub struct SubnetCidrReservation {
pub subnet_cidr_reservation_id: Option<String>,
pub subnet_id: Option<String>,
pub cidr: Option<String>,
pub reservation_type: Option<SubnetCidrReservationType>,
pub owner_id: Option<String>,
pub description: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a subnet CIDR reservation.
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.subnet_cidr_reservation_id: Option<String>
The ID of the subnet CIDR reservation.
subnet_id: Option<String>
The ID of the subnet.
cidr: Option<String>
The CIDR that has been reserved.
reservation_type: Option<SubnetCidrReservationType>
The type of reservation.
owner_id: Option<String>
The ID of the account that owns the subnet CIDR reservation.
description: Option<String>
The description assigned to the subnet CIDR reservation.
The tags assigned to the subnet CIDR reservation.
Implementations
The ID of the subnet CIDR reservation.
The type of reservation.
The ID of the account that owns the subnet CIDR reservation.
The description assigned to the subnet CIDR reservation.
The tags assigned to the subnet CIDR reservation.
Creates a new builder-style object to manufacture SubnetCidrReservation
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SubnetCidrReservation
impl Send for SubnetCidrReservation
impl Sync for SubnetCidrReservation
impl Unpin for SubnetCidrReservation
impl UnwindSafe for SubnetCidrReservation
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more