Struct aws_sdk_ec2::model::TransitGatewayVpcAttachment [−][src]
#[non_exhaustive]pub struct TransitGatewayVpcAttachment {
pub transit_gateway_attachment_id: Option<String>,
pub transit_gateway_id: Option<String>,
pub vpc_id: Option<String>,
pub vpc_owner_id: Option<String>,
pub state: Option<TransitGatewayAttachmentState>,
pub subnet_ids: Option<Vec<String>>,
pub creation_time: Option<DateTime>,
pub options: Option<TransitGatewayVpcAttachmentOptions>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a VPC attachment.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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 Amazon Web Services account that owns the VPC.
state: Option<TransitGatewayAttachmentState>
The state of the VPC attachment. Note that the initiating
state has been deprecated.
subnet_ids: Option<Vec<String>>
The IDs of the subnets.
creation_time: Option<DateTime>
The creation time.
options: Option<TransitGatewayVpcAttachmentOptions>
The VPC attachment options.
The tags for the VPC attachment.
Implementations
The ID of the attachment.
The ID of the transit gateway.
The ID of the Amazon Web Services account that owns the VPC.
The state of the VPC attachment. Note that the initiating
state has been deprecated.
The creation time.
The VPC attachment options.
The tags for the VPC attachment.
Creates a new builder-style object to manufacture TransitGatewayVpcAttachment
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for TransitGatewayVpcAttachment
impl Send for TransitGatewayVpcAttachment
impl Sync for TransitGatewayVpcAttachment
impl Unpin for TransitGatewayVpcAttachment
impl UnwindSafe for TransitGatewayVpcAttachment
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more