Struct aws_sdk_ec2::operation::modify_transit_gateway_vpc_attachment::builders::ModifyTransitGatewayVpcAttachmentFluentBuilder
source · pub struct ModifyTransitGatewayVpcAttachmentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ModifyTransitGatewayVpcAttachment
.
Modifies the specified VPC attachment.
Implementations§
source§impl ModifyTransitGatewayVpcAttachmentFluentBuilder
impl ModifyTransitGatewayVpcAttachmentFluentBuilder
sourcepub fn as_input(&self) -> &ModifyTransitGatewayVpcAttachmentInputBuilder
pub fn as_input(&self) -> &ModifyTransitGatewayVpcAttachmentInputBuilder
Access the ModifyTransitGatewayVpcAttachment as a reference.
sourcepub async fn send(
self
) -> Result<ModifyTransitGatewayVpcAttachmentOutput, SdkError<ModifyTransitGatewayVpcAttachmentError, HttpResponse>>
pub async fn send( self ) -> Result<ModifyTransitGatewayVpcAttachmentOutput, SdkError<ModifyTransitGatewayVpcAttachmentError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ModifyTransitGatewayVpcAttachmentOutput, ModifyTransitGatewayVpcAttachmentError>, SdkError<ModifyTransitGatewayVpcAttachmentError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ModifyTransitGatewayVpcAttachmentOutput, ModifyTransitGatewayVpcAttachmentError>, SdkError<ModifyTransitGatewayVpcAttachmentError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn transit_gateway_attachment_id(self, input: impl Into<String>) -> Self
pub fn transit_gateway_attachment_id(self, input: impl Into<String>) -> Self
The ID of the attachment.
sourcepub fn set_transit_gateway_attachment_id(self, input: Option<String>) -> Self
pub fn set_transit_gateway_attachment_id(self, input: Option<String>) -> Self
The ID of the attachment.
sourcepub fn get_transit_gateway_attachment_id(&self) -> &Option<String>
pub fn get_transit_gateway_attachment_id(&self) -> &Option<String>
The ID of the attachment.
sourcepub fn add_subnet_ids(self, input: impl Into<String>) -> Self
pub fn add_subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to AddSubnetIds
.
To override the contents of this collection use set_add_subnet_ids
.
The IDs of one or more subnets to add. You can specify at most one subnet per Availability Zone.
sourcepub fn set_add_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_add_subnet_ids(self, input: Option<Vec<String>>) -> Self
The IDs of one or more subnets to add. You can specify at most one subnet per Availability Zone.
sourcepub fn get_add_subnet_ids(&self) -> &Option<Vec<String>>
pub fn get_add_subnet_ids(&self) -> &Option<Vec<String>>
The IDs of one or more subnets to add. You can specify at most one subnet per Availability Zone.
sourcepub fn remove_subnet_ids(self, input: impl Into<String>) -> Self
pub fn remove_subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to RemoveSubnetIds
.
To override the contents of this collection use set_remove_subnet_ids
.
The IDs of one or more subnets to remove.
sourcepub fn set_remove_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_remove_subnet_ids(self, input: Option<Vec<String>>) -> Self
The IDs of one or more subnets to remove.
sourcepub fn get_remove_subnet_ids(&self) -> &Option<Vec<String>>
pub fn get_remove_subnet_ids(&self) -> &Option<Vec<String>>
The IDs of one or more subnets to remove.
sourcepub fn options(
self,
input: ModifyTransitGatewayVpcAttachmentRequestOptions
) -> Self
pub fn options( self, input: ModifyTransitGatewayVpcAttachmentRequestOptions ) -> Self
The new VPC attachment options.
sourcepub fn set_options(
self,
input: Option<ModifyTransitGatewayVpcAttachmentRequestOptions>
) -> Self
pub fn set_options( self, input: Option<ModifyTransitGatewayVpcAttachmentRequestOptions> ) -> Self
The new VPC attachment options.
sourcepub fn get_options(
&self
) -> &Option<ModifyTransitGatewayVpcAttachmentRequestOptions>
pub fn get_options( &self ) -> &Option<ModifyTransitGatewayVpcAttachmentRequestOptions>
The new VPC attachment options.
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
.
Trait Implementations§
source§impl Clone for ModifyTransitGatewayVpcAttachmentFluentBuilder
impl Clone for ModifyTransitGatewayVpcAttachmentFluentBuilder
source§fn clone(&self) -> ModifyTransitGatewayVpcAttachmentFluentBuilder
fn clone(&self) -> ModifyTransitGatewayVpcAttachmentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more