interface CfnTransitGatewayConnectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayConnectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayConnectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayConnectMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayConnectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnTransitGatewayConnectMixinProps: ec2_mixins.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 | 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
(optional)
The ID of the attachment from which the Connect attachment was created.

.NET
Go
Java
Python
TypeScript