CfnTransitGatewayPeeringAttachmentMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayPeeringAttachmentMixinProps(*, peer_account_id=None, peer_region=None, peer_transit_gateway_id=None, tags=None, transit_gateway_id=None)
Bases:
objectProperties for CfnTransitGatewayPeeringAttachmentPropsMixin.
- Parameters:
peer_account_id (
Optional[str]) – The ID of the AWS account that owns the transit gateway.peer_region (
Optional[str]) – The Region where the transit gateway that you want to create the peer for is located.peer_transit_gateway_id (
Optional[str]) – The ID of the transit gateway in the PeerRegion.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags for the transit gateway peering attachment.transit_gateway_id (
Optional[str]) – The ID of the transit gateway peering attachment.
- 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_peering_attachment_mixin_props = ec2_mixins.CfnTransitGatewayPeeringAttachmentMixinProps( peer_account_id="peerAccountId", peer_region="peerRegion", peer_transit_gateway_id="peerTransitGatewayId", tags=[CfnTag( key="key", value="value" )], transit_gateway_id="transitGatewayId" )
Attributes
- peer_account_id
The ID of the AWS account that owns the transit gateway.
- peer_region
The Region where the transit gateway that you want to create the peer for is located.
- peer_transit_gateway_id
The ID of the transit gateway in the PeerRegion.
- tags
The tags for the transit gateway peering attachment.
- transit_gateway_id
The ID of the transit gateway peering attachment.