interface CfnTransitGatewayConnectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayConnectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayConnectMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayConnectMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayConnectMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnTransitGatewayConnectMixinProps |
Properties for CfnTransitGatewayConnectPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnTransitGatewayConnectMixinProps: ec2.CfnTransitGatewayConnectMixinProps = {
options: {
protocol: 'protocol',
},
tags: [{
key: 'key',
value: 'value',
}],
transportTransitGatewayAttachmentId: 'transportTransitGatewayAttachmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| options? | IResolvable | Transit | The Connect attachment options. |
| tags? | Cfn[] | The tags for the attachment. |
| transport | string | ITransit | The ID of the attachment from which the Connect attachment was created. |
options?
Type:
IResolvable | Transit
(optional)
The Connect attachment options.
- protocol (gre)
tags?
Type:
Cfn[]
(optional)
The tags for the attachment.
transportTransitGatewayAttachmentId?
Type:
string | ITransit
(optional)
The ID of the attachment from which the Connect attachment was created.

.NET
Go
Java
Python
TypeScript