interface CfnTransitGatewayMeteringPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayMeteringPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayMeteringPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayMeteringPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMeteringPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayMeteringPolicyMixinProps |
Properties for CfnTransitGatewayMeteringPolicyPropsMixin.
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 cfnTransitGatewayMeteringPolicyMixinProps: ec2_mixins.CfnTransitGatewayMeteringPolicyMixinProps = {
middleboxAttachmentIds: ['middleboxAttachmentIds'],
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayId: 'transitGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| middlebox | string[] | The IDs of the middlebox attachments associated with the metering policy. |
| tags? | Cfn[] | The tags assigned to the transit gateway metering policy. |
| transit | string | The ID of the transit gateway associated with the metering policy. |
middleboxAttachmentIds?
Type:
string[]
(optional)
The IDs of the middlebox attachments associated with the metering policy.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the transit gateway metering policy.
transitGatewayId?
Type:
string
(optional)
The ID of the transit gateway associated with the metering policy.

.NET
Go
Java
Python
TypeScript