pub struct Builder { /* private fields */ }
Expand description
A builder for ModifyTransitGatewayVpcAttachmentInput
.
Implementations§
source§impl Builder
impl Builder
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 add_subnet_ids(self, input: impl Into<String>) -> Self
pub fn add_subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to add_subnet_ids
.
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 remove_subnet_ids(self, input: impl Into<String>) -> Self
pub fn remove_subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to remove_subnet_ids
.
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 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 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 build(self) -> Result<ModifyTransitGatewayVpcAttachmentInput, BuildError>
pub fn build(self) -> Result<ModifyTransitGatewayVpcAttachmentInput, BuildError>
Consumes the builder and constructs a ModifyTransitGatewayVpcAttachmentInput
.