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