pub struct CreateTransitGatewayPeeringAttachmentRequest {
pub dry_run: Option<bool>,
pub peer_account_id: String,
pub peer_region: String,
pub peer_transit_gateway_id: String,
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.
peer_account_id: StringThe AWS account ID of the owner of the peer transit gateway.
peer_region: StringThe Region where the peer transit gateway is located.
peer_transit_gateway_id: StringThe ID of the peer transit gateway with which to create the peering attachment.
tag_specifications: Option<Vec<TagSpecification>>The tags to apply to the transit gateway peering attachment.
transit_gateway_id: StringThe ID of the transit gateway.
Trait Implementations§
Source§impl Clone for CreateTransitGatewayPeeringAttachmentRequest
impl Clone for CreateTransitGatewayPeeringAttachmentRequest
Source§fn clone(&self) -> CreateTransitGatewayPeeringAttachmentRequest
fn clone(&self) -> CreateTransitGatewayPeeringAttachmentRequest
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 CreateTransitGatewayPeeringAttachmentRequest
impl Default for CreateTransitGatewayPeeringAttachmentRequest
Source§fn default() -> CreateTransitGatewayPeeringAttachmentRequest
fn default() -> CreateTransitGatewayPeeringAttachmentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateTransitGatewayPeeringAttachmentRequest
impl PartialEq for CreateTransitGatewayPeeringAttachmentRequest
Source§fn eq(&self, other: &CreateTransitGatewayPeeringAttachmentRequest) -> bool
fn eq(&self, other: &CreateTransitGatewayPeeringAttachmentRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateTransitGatewayPeeringAttachmentRequest
Auto Trait Implementations§
impl Freeze for CreateTransitGatewayPeeringAttachmentRequest
impl RefUnwindSafe for CreateTransitGatewayPeeringAttachmentRequest
impl Send for CreateTransitGatewayPeeringAttachmentRequest
impl Sync for CreateTransitGatewayPeeringAttachmentRequest
impl Unpin for CreateTransitGatewayPeeringAttachmentRequest
impl UnwindSafe for CreateTransitGatewayPeeringAttachmentRequest
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