CfnTransitGatewayMeteringPolicyMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMeteringPolicyMixinProps(*, middlebox_attachment_ids=None, tags=None, transit_gateway_id=None)
Bases:
objectProperties for CfnTransitGatewayMeteringPolicyPropsMixin.
- Parameters:
middlebox_attachment_ids (
Optional[Sequence[str]]) – The IDs of the middlebox attachments associated with the metering policy.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags assigned to the transit gateway metering policy.transit_gateway_id (
Optional[str]) – The ID of the transit gateway associated with the metering policy.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_transit_gateway_metering_policy_mixin_props = ec2_mixins.CfnTransitGatewayMeteringPolicyMixinProps( middlebox_attachment_ids=["middleboxAttachmentIds"], tags=[CfnTag( key="key", value="value" )], transit_gateway_id="transitGatewayId" )
Attributes
- middlebox_attachment_ids
The IDs of the middlebox attachments associated with the metering policy.
- tags
The tags assigned to the transit gateway metering policy.
- transit_gateway_id
The ID of the transit gateway associated with the metering policy.