interface CfnInternetGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnInternetGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnInternetGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnInternetGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnInternetGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnInternetGatewayMixinProps |
Properties for CfnInternetGatewayPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.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 cfnInternetGatewayMixinProps: ec2_mixins.CfnInternetGatewayMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | Any tags to assign to the internet gateway. |
tags?
Type:
Cfn[]
(optional)
Any tags to assign to the internet gateway.

.NET
Go
Java
Python
TypeScript