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