pub struct CreateTransitGatewayRequest {
pub description: Option<String>,
pub dry_run: Option<bool>,
pub options: Option<TransitGatewayRequestOptions>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}Fields§
§description: Option<String>A description of the transit gateway.
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<TransitGatewayRequestOptions>The transit gateway options.
tag_specifications: Option<Vec<TagSpecification>>The tags to apply to the transit gateway.
Trait Implementations§
Source§impl Clone for CreateTransitGatewayRequest
impl Clone for CreateTransitGatewayRequest
Source§fn clone(&self) -> CreateTransitGatewayRequest
fn clone(&self) -> CreateTransitGatewayRequest
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 Debug for CreateTransitGatewayRequest
impl Debug for CreateTransitGatewayRequest
Source§impl Default for CreateTransitGatewayRequest
impl Default for CreateTransitGatewayRequest
Source§fn default() -> CreateTransitGatewayRequest
fn default() -> CreateTransitGatewayRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateTransitGatewayRequest
Auto Trait Implementations§
impl Freeze for CreateTransitGatewayRequest
impl RefUnwindSafe for CreateTransitGatewayRequest
impl Send for CreateTransitGatewayRequest
impl Sync for CreateTransitGatewayRequest
impl Unpin for CreateTransitGatewayRequest
impl UnwindSafe for CreateTransitGatewayRequest
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