TransitGatewayPolicyTableAssociationReference
- class aws_cdk.interfaces.aws_ec2.TransitGatewayPolicyTableAssociationReference(*, transit_gateway_attachment_id, transit_gateway_policy_table_id)
Bases:
objectA reference to a TransitGatewayPolicyTableAssociation resource.
- Parameters:
transit_gateway_attachment_id (
str) – The TransitGatewayAttachmentId of the TransitGatewayPolicyTableAssociation resource.transit_gateway_policy_table_id (
str) – The TransitGatewayPolicyTableId of the TransitGatewayPolicyTableAssociation resource.
- 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.interfaces import aws_ec2 as interfaces_ec2 transit_gateway_policy_table_association_reference = interfaces_ec2.TransitGatewayPolicyTableAssociationReference( transit_gateway_attachment_id="transitGatewayAttachmentId", transit_gateway_policy_table_id="transitGatewayPolicyTableId" )
Attributes
- transit_gateway_attachment_id
The TransitGatewayAttachmentId of the TransitGatewayPolicyTableAssociation resource.
- transit_gateway_policy_table_id
The TransitGatewayPolicyTableId of the TransitGatewayPolicyTableAssociation resource.