pub struct TransitGatewayVpcAttachment {
pub creation_time: Option<String>,
pub options: Option<TransitGatewayVpcAttachmentOptions>,
pub state: Option<String>,
pub subnet_ids: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
pub transit_gateway_attachment_id: Option<String>,
pub transit_gateway_id: Option<String>,
pub vpc_id: Option<String>,
pub vpc_owner_id: Option<String>,
}Expand description
Describes a VPC attachment.
Fields§
§creation_time: Option<String>The creation time.
options: Option<TransitGatewayVpcAttachmentOptions>The VPC attachment options.
state: Option<String>The state of the VPC attachment.
subnet_ids: Option<Vec<String>>The IDs of the subnets.
The tags for the VPC attachment.
transit_gateway_attachment_id: Option<String>The ID of the attachment.
transit_gateway_id: Option<String>The ID of the transit gateway.
vpc_id: Option<String>The ID of the VPC.
vpc_owner_id: Option<String>The ID of the AWS account that owns the VPC.
Trait Implementations§
Source§impl Clone for TransitGatewayVpcAttachment
impl Clone for TransitGatewayVpcAttachment
Source§fn clone(&self) -> TransitGatewayVpcAttachment
fn clone(&self) -> TransitGatewayVpcAttachment
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 TransitGatewayVpcAttachment
impl Debug for TransitGatewayVpcAttachment
Source§impl Default for TransitGatewayVpcAttachment
impl Default for TransitGatewayVpcAttachment
Source§fn default() -> TransitGatewayVpcAttachment
fn default() -> TransitGatewayVpcAttachment
Returns the “default value” for a type. Read more
impl StructuralPartialEq for TransitGatewayVpcAttachment
Auto Trait Implementations§
impl Freeze for TransitGatewayVpcAttachment
impl RefUnwindSafe for TransitGatewayVpcAttachment
impl Send for TransitGatewayVpcAttachment
impl Sync for TransitGatewayVpcAttachment
impl Unpin for TransitGatewayVpcAttachment
impl UnwindSafe for TransitGatewayVpcAttachment
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