pub struct ModifyTransitGatewayVpcAttachmentRequest {
pub add_subnet_ids: Option<Vec<String>>,
pub dry_run: Option<bool>,
pub options: Option<ModifyTransitGatewayVpcAttachmentRequestOptions>,
pub remove_subnet_ids: Option<Vec<String>>,
pub transit_gateway_attachment_id: String,
}
Fields§
§add_subnet_ids: Option<Vec<String>>
The IDs of one or more subnets to add. You can specify at most one subnet per Availability Zone.
dry_run: 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
.
options: Option<ModifyTransitGatewayVpcAttachmentRequestOptions>
The new VPC attachment options.
You cannot modify the IPv6 options.
remove_subnet_ids: Option<Vec<String>>
The IDs of one or more subnets to remove.
transit_gateway_attachment_id: String
The ID of the attachment.
Trait Implementations§
Source§impl Clone for ModifyTransitGatewayVpcAttachmentRequest
impl Clone for ModifyTransitGatewayVpcAttachmentRequest
Source§fn clone(&self) -> ModifyTransitGatewayVpcAttachmentRequest
fn clone(&self) -> ModifyTransitGatewayVpcAttachmentRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ModifyTransitGatewayVpcAttachmentRequest
impl Default for ModifyTransitGatewayVpcAttachmentRequest
Source§fn default() -> ModifyTransitGatewayVpcAttachmentRequest
fn default() -> ModifyTransitGatewayVpcAttachmentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyTransitGatewayVpcAttachmentRequest
impl PartialEq for ModifyTransitGatewayVpcAttachmentRequest
Source§fn eq(&self, other: &ModifyTransitGatewayVpcAttachmentRequest) -> bool
fn eq(&self, other: &ModifyTransitGatewayVpcAttachmentRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyTransitGatewayVpcAttachmentRequest
Auto Trait Implementations§
impl Freeze for ModifyTransitGatewayVpcAttachmentRequest
impl RefUnwindSafe for ModifyTransitGatewayVpcAttachmentRequest
impl Send for ModifyTransitGatewayVpcAttachmentRequest
impl Sync for ModifyTransitGatewayVpcAttachmentRequest
impl Unpin for ModifyTransitGatewayVpcAttachmentRequest
impl UnwindSafe for ModifyTransitGatewayVpcAttachmentRequest
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