pub struct CreateLocalGatewayRouteTableVpcAssociationRequest {
pub dry_run: Option<bool>,
pub local_gateway_route_table_id: String,
pub tag_specifications: Option<Vec<TagSpecification>>,
pub vpc_id: String,
}
Fields§
§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
.
local_gateway_route_table_id: String
The ID of the local gateway route table.
tag_specifications: Option<Vec<TagSpecification>>
The tags to assign to the local gateway route table VPC association.
vpc_id: String
The ID of the VPC.
Trait Implementations§
Source§impl Clone for CreateLocalGatewayRouteTableVpcAssociationRequest
impl Clone for CreateLocalGatewayRouteTableVpcAssociationRequest
Source§fn clone(&self) -> CreateLocalGatewayRouteTableVpcAssociationRequest
fn clone(&self) -> CreateLocalGatewayRouteTableVpcAssociationRequest
Returns a copy 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 CreateLocalGatewayRouteTableVpcAssociationRequest
impl Default for CreateLocalGatewayRouteTableVpcAssociationRequest
Source§fn default() -> CreateLocalGatewayRouteTableVpcAssociationRequest
fn default() -> CreateLocalGatewayRouteTableVpcAssociationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateLocalGatewayRouteTableVpcAssociationRequest
impl PartialEq for CreateLocalGatewayRouteTableVpcAssociationRequest
Source§fn eq(&self, other: &CreateLocalGatewayRouteTableVpcAssociationRequest) -> bool
fn eq(&self, other: &CreateLocalGatewayRouteTableVpcAssociationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateLocalGatewayRouteTableVpcAssociationRequest
Auto Trait Implementations§
impl Freeze for CreateLocalGatewayRouteTableVpcAssociationRequest
impl RefUnwindSafe for CreateLocalGatewayRouteTableVpcAssociationRequest
impl Send for CreateLocalGatewayRouteTableVpcAssociationRequest
impl Sync for CreateLocalGatewayRouteTableVpcAssociationRequest
impl Unpin for CreateLocalGatewayRouteTableVpcAssociationRequest
impl UnwindSafe for CreateLocalGatewayRouteTableVpcAssociationRequest
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