CfnSiteToSiteVpnAttachmentProps
- class aws_cdk.aws_networkmanager.CfnSiteToSiteVpnAttachmentProps(*, core_network_id, vpn_connection_arn, proposed_segment_change=None, tags=None)
Bases:
objectProperties for defining a
CfnSiteToSiteVpnAttachment.- Parameters:
core_network_id (
str) –AWS::NetworkManager::SiteToSiteVpnAttachment.CoreNetworkId.vpn_connection_arn (
str) – The ARN of the site-to-site VPN attachment.proposed_segment_change (
Union[IResolvable,ProposedSegmentChangeProperty,Dict[str,Any],None]) –AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) –AWS::NetworkManager::SiteToSiteVpnAttachment.Tags.
- 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_site_to_site_vpn_attachment_props = networkmanager.CfnSiteToSiteVpnAttachmentProps( core_network_id="coreNetworkId", vpn_connection_arn="vpnConnectionArn", # the properties below are optional proposed_segment_change=networkmanager.CfnSiteToSiteVpnAttachment.ProposedSegmentChangeProperty( attachment_policy_rule_number=123, segment_name="segmentName", tags=[CfnTag( key="key", value="value" )] ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- core_network_id
AWS::NetworkManager::SiteToSiteVpnAttachment.CoreNetworkId.
- proposed_segment_change
AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange.
- tags
AWS::NetworkManager::SiteToSiteVpnAttachment.Tags.
- vpn_connection_arn
The ARN of the site-to-site VPN attachment.