CfnOdbPeeringConnectionProps
- class aws_cdk.aws_odb.CfnOdbPeeringConnectionProps(*, display_name=None, odb_network_id=None, peer_network_id=None, tags=None)
- Bases: - object- Properties for defining a - CfnOdbPeeringConnection.- Parameters:
- display_name ( - Optional[- str]) – The display name of the ODB peering connection.
- odb_network_id ( - Optional[- str]) – The unique identifier of the ODB network.
- peer_network_id ( - Optional[- str]) – The unique identifier of the peer network.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – Tags to assign to the Odb peering connection.
 
- 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 import aws_odb as odb cfn_odb_peering_connection_props = odb.CfnOdbPeeringConnectionProps( display_name="displayName", odb_network_id="odbNetworkId", peer_network_id="peerNetworkId", tags=[CfnTag( key="key", value="value" )] ) - Attributes - display_name
- The display name of the ODB peering connection. 
 - odb_network_id
- The unique identifier of the ODB network. 
 - peer_network_id
- The unique identifier of the peer network. 
 - tags
- Tags to assign to the Odb peering connection.