interface CfnCarrierGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnCarrierGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnCarrierGatewayMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnCarrierGatewayMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnCarrierGatewayMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnCarrierGatewayMixinProps: ec2.CfnCarrierGatewayMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | The tags assigned to the carrier gateway. |
| vpc | string | IVPCRef | The ID of the VPC associated with the carrier gateway. |
tags?
Type:
Cfn[]
(optional)
The tags assigned to the carrier gateway.
vpcId?
Type:
string | IVPCRef
(optional)
The ID of the VPC associated with the carrier gateway.

.NET
Go
Java
Python
TypeScript