Struct aws_sdk_ec2::operation::create_subnet_cidr_reservation::builders::CreateSubnetCidrReservationInputBuilder
source · #[non_exhaustive]pub struct CreateSubnetCidrReservationInputBuilder { /* private fields */ }Expand description
A builder for CreateSubnetCidrReservationInput.
Implementations§
source§impl CreateSubnetCidrReservationInputBuilder
impl CreateSubnetCidrReservationInputBuilder
sourcepub fn subnet_id(self, input: impl Into<String>) -> Self
pub fn subnet_id(self, input: impl Into<String>) -> Self
The ID of the subnet.
This field is required.sourcepub fn set_subnet_id(self, input: Option<String>) -> Self
pub fn set_subnet_id(self, input: Option<String>) -> Self
The ID of the subnet.
sourcepub fn get_subnet_id(&self) -> &Option<String>
pub fn get_subnet_id(&self) -> &Option<String>
The ID of the subnet.
sourcepub fn cidr(self, input: impl Into<String>) -> Self
pub fn cidr(self, input: impl Into<String>) -> Self
The IPv4 or IPV6 CIDR range to reserve.
This field is required.sourcepub fn reservation_type(self, input: SubnetCidrReservationType) -> Self
pub fn reservation_type(self, input: SubnetCidrReservationType) -> Self
The type of reservation. The reservation type determines how the reserved IP addresses are assigned to resources.
-
prefix- Amazon Web Services assigns the reserved IP addresses to network interfaces. -
explicit- You assign the reserved IP addresses to network interfaces.
sourcepub fn set_reservation_type(
self,
input: Option<SubnetCidrReservationType>
) -> Self
pub fn set_reservation_type( self, input: Option<SubnetCidrReservationType> ) -> Self
The type of reservation. The reservation type determines how the reserved IP addresses are assigned to resources.
-
prefix- Amazon Web Services assigns the reserved IP addresses to network interfaces. -
explicit- You assign the reserved IP addresses to network interfaces.
sourcepub fn get_reservation_type(&self) -> &Option<SubnetCidrReservationType>
pub fn get_reservation_type(&self) -> &Option<SubnetCidrReservationType>
The type of reservation. The reservation type determines how the reserved IP addresses are assigned to resources.
-
prefix- Amazon Web Services assigns the reserved IP addresses to network interfaces. -
explicit- You assign the reserved IP addresses to network interfaces.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description to assign to the subnet CIDR reservation.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description to assign to the subnet CIDR reservation.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description to assign to the subnet CIDR reservation.
sourcepub fn dry_run(self, input: bool) -> Self
pub fn dry_run(self, input: bool) -> Self
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
sourcepub fn set_dry_run(self, input: Option<bool>) -> Self
pub fn set_dry_run(self, input: Option<bool>) -> Self
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
sourcepub fn get_dry_run(&self) -> &Option<bool>
pub fn get_dry_run(&self) -> &Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
sourcepub fn tag_specifications(self, input: TagSpecification) -> Self
pub fn tag_specifications(self, input: TagSpecification) -> Self
Appends an item to tag_specifications.
To override the contents of this collection use set_tag_specifications.
The tags to assign to the subnet CIDR reservation.
sourcepub fn set_tag_specifications(
self,
input: Option<Vec<TagSpecification>>
) -> Self
pub fn set_tag_specifications( self, input: Option<Vec<TagSpecification>> ) -> Self
The tags to assign to the subnet CIDR reservation.
sourcepub fn get_tag_specifications(&self) -> &Option<Vec<TagSpecification>>
pub fn get_tag_specifications(&self) -> &Option<Vec<TagSpecification>>
The tags to assign to the subnet CIDR reservation.
sourcepub fn build(self) -> Result<CreateSubnetCidrReservationInput, BuildError>
pub fn build(self) -> Result<CreateSubnetCidrReservationInput, BuildError>
Consumes the builder and constructs a CreateSubnetCidrReservationInput.
source§impl CreateSubnetCidrReservationInputBuilder
impl CreateSubnetCidrReservationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateSubnetCidrReservationOutput, SdkError<CreateSubnetCidrReservationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateSubnetCidrReservationOutput, SdkError<CreateSubnetCidrReservationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateSubnetCidrReservationInputBuilder
impl Clone for CreateSubnetCidrReservationInputBuilder
source§fn clone(&self) -> CreateSubnetCidrReservationInputBuilder
fn clone(&self) -> CreateSubnetCidrReservationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateSubnetCidrReservationInputBuilder
impl Default for CreateSubnetCidrReservationInputBuilder
source§fn default() -> CreateSubnetCidrReservationInputBuilder
fn default() -> CreateSubnetCidrReservationInputBuilder
source§impl PartialEq for CreateSubnetCidrReservationInputBuilder
impl PartialEq for CreateSubnetCidrReservationInputBuilder
source§fn eq(&self, other: &CreateSubnetCidrReservationInputBuilder) -> bool
fn eq(&self, other: &CreateSubnetCidrReservationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.