CfnSiteToSiteVpnAttachmentProps
- class aws_cdk.aws_networkmanager.CfnSiteToSiteVpnAttachmentProps(*, core_network_id, vpn_connection_arn, tags=None)
Bases:
object
Properties 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.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 tags=[CfnTag( key="key", value="value" )] )
Attributes
- core_network_id
AWS::NetworkManager::SiteToSiteVpnAttachment.CoreNetworkId
.
- tags
AWS::NetworkManager::SiteToSiteVpnAttachment.Tags
.
- vpn_connection_arn
The ARN of the site-to-site VPN attachment.