CfnConnectPeerMixinProps
- class aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnConnectPeerMixinProps(*, bgp_options=None, connect_attachment_id=None, core_network_address=None, inside_cidr_blocks=None, peer_address=None, subnet_arn=None, tags=None)
Bases:
objectProperties for CfnConnectPeerPropsMixin.
- Parameters:
bgp_options (
Union[IResolvable,BgpOptionsProperty,Dict[str,Any],None]) – Describes the BGP options.connect_attachment_id (
Optional[str]) – The ID of the attachment to connect.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.peer_address (
Optional[str]) – The IP address of the Connect peer.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.mixins_preview.aws_networkmanager import mixins as networkmanager_mixins cfn_connect_peer_mixin_props = networkmanager_mixins.CfnConnectPeerMixinProps( bgp_options=networkmanager_mixins.CfnConnectPeerPropsMixin.BgpOptionsProperty( peer_asn=123 ), connect_attachment_id="connectAttachmentId", core_network_address="coreNetworkAddress", inside_cidr_blocks=["insideCidrBlocks"], peer_address="peerAddress", 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.