CfnTransitGatewayPeeringProps
- class aws_cdk.aws_networkmanager.CfnTransitGatewayPeeringProps(*, core_network_id, transit_gateway_arn, tags=None)
Bases:
object
Properties for defining a
CfnTransitGatewayPeering
.- Parameters:
core_network_id (
str
) – The ID of the core network.transit_gateway_arn (
str
) – The ARN of the transit gateway.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The list of key-value tags associated with the peering.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_networkmanager as networkmanager cfn_transit_gateway_peering_props = networkmanager.CfnTransitGatewayPeeringProps( core_network_id="coreNetworkId", transit_gateway_arn="transitGatewayArn", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- core_network_id
The ID of the core network.
- tags
The list of key-value tags associated with the peering.
- transit_gateway_arn
The ARN of the transit gateway.