CfnCoreNetworkProps
- class aws_cdk.aws_networkmanager.CfnCoreNetworkProps(*, global_network_id, description=None, policy_document=None, tags=None)
Bases:
object
Properties for defining a
CfnCoreNetwork
.- Parameters:
global_network_id (
str
) – The ID of the global network that your core network is a part of.description (
Optional
[str
]) – The description of a core network.policy_document (
Optional
[Any
]) – Describes a core network policy. For more information, see Core network policies . If you update the policy document, CloudFormation will apply the core network change set generated from the updated policy document, and then set it as the LIVE policy.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The list of key-value tags associated with a core network.
- 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 # policy_document: Any cfn_core_network_props = networkmanager.CfnCoreNetworkProps( global_network_id="globalNetworkId", # the properties below are optional description="description", policy_document=policy_document, tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of a core network.
- global_network_id
The ID of the global network that your core network is a part of.
- policy_document
//docs.aws.amazon.com/network-manager/latest/cloudwan/cloudwan-policy-change-sets.html>`_ .
If you update the policy document, CloudFormation will apply the core network change set generated from the updated policy document, and then set it as the LIVE policy.
- Link:
- Type:
Describes a core network policy. For more information, see `Core network policies <https
- tags
The list of key-value tags associated with a core network.