interface CfnTransitGatewayMeteringPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayMeteringPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayMeteringPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayMeteringPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayMeteringPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnTransitGatewayMeteringPolicyMixinProps: ec2.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