CfnCoreNetworkMixinProps
- class aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnCoreNetworkMixinProps(*, description=None, global_network_id=None, policy_document=None, tags=None)
Bases:
objectProperties for CfnCoreNetworkPropsMixin.
- Parameters:
description (
Optional[str]) – The description of a core network.global_network_id (
Optional[str]) – The ID of the global network that your core network is a part of.policy_document (
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.
- 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 # policy_document: Any cfn_core_network_mixin_props = networkmanager_mixins.CfnCoreNetworkMixinProps( description="description", global_network_id="globalNetworkId", 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
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
The list of key-value tags associated with a core network.