CfnConnectPeerProps
- class aws_cdk.aws_networkmanager.CfnConnectPeerProps(*, connect_attachment_id, peer_address, bgp_options=None, core_network_address=None, inside_cidr_blocks=None, subnet_arn=None, tags=None)
Bases:
objectProperties for defining a
CfnConnectPeer.- Parameters:
connect_attachment_id (
str) – The ID of the attachment to connect.peer_address (
str) – The IP address of the Connect peer.bgp_options (
Union[IResolvable,BgpOptionsProperty,Dict[str,Any],None]) – Describes the BGP options.core_network_address (
Optional[str]) – The IP address of a core network.inside_cidr_blocks (
Optional[Sequence[str]]) – The inside IP addresses used for a Connect peer configuration.subnet_arn (
Optional[str]) – The subnet ARN of the Connect peer.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The list of key-value tags associated with the Connect peer.
- 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_networkmanager as networkmanager cfn_connect_peer_props = networkmanager.CfnConnectPeerProps( connect_attachment_id="connectAttachmentId", peer_address="peerAddress", # the properties below are optional bgp_options=networkmanager.CfnConnectPeer.BgpOptionsProperty( peer_asn=123 ), core_network_address="coreNetworkAddress", inside_cidr_blocks=["insideCidrBlocks"], subnet_arn="subnetArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- bgp_options
Describes the BGP options.
- connect_attachment_id
The ID of the attachment to connect.
- core_network_address
The IP address of a core network.
- inside_cidr_blocks
The inside IP addresses used for a Connect peer configuration.
- peer_address
The IP address of the Connect peer.
- subnet_arn
The subnet ARN of the Connect peer.
- tags
The list of key-value tags associated with the Connect peer.