CfnTransitGatewayConnectMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayConnectMixinProps(*, options=None, tags=None, transport_transit_gateway_attachment_id=None)
Bases:
objectProperties for CfnTransitGatewayConnectPropsMixin.
- Parameters:
options (
Union[IResolvable,TransitGatewayConnectOptionsProperty,Dict[str,Any],None]) – The Connect attachment options. - protocol (gre)tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags for the attachment.transport_transit_gateway_attachment_id (
Optional[str]) – The ID of the attachment from which the Connect attachment was created.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_transit_gateway_connect_mixin_props = ec2_mixins.CfnTransitGatewayConnectMixinProps( options=ec2_mixins.CfnTransitGatewayConnectPropsMixin.TransitGatewayConnectOptionsProperty( protocol="protocol" ), tags=[CfnTag( key="key", value="value" )], transport_transit_gateway_attachment_id="transportTransitGatewayAttachmentId" )
Attributes
- options
The Connect attachment options.
protocol (gre)
- tags
The tags for the attachment.
- transport_transit_gateway_attachment_id
The ID of the attachment from which the Connect attachment was created.