interface CfnCarrierGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnCarrierGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnCarrierGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnCarrierGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnCarrierGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnCarrierGatewayMixinProps |
Properties for CfnCarrierGatewayPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-carriergateway.html
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 cfnCarrierGatewayMixinProps: ec2_mixins.CfnCarrierGatewayMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | The tags assigned to the carrier gateway. |
| vpc | string | The ID of the VPC associated with the carrier gateway. |
tags?
Type:
Cfn[]
(optional)
The tags assigned to the carrier gateway.
vpcId?
Type:
string
(optional)
The ID of the VPC associated with the carrier gateway.

.NET
Go
Java
Python
TypeScript