CfnGlobalNetworkProps
- class aws_cdk.aws_networkmanager.CfnGlobalNetworkProps(*, description=None, tags=None)
Bases:
objectProperties for defining a
CfnGlobalNetwork.- Parameters:
description (
Optional[str]) – A description of the global network. Constraints: Maximum length of 256 characters.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags for the global 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 cfn_global_network_props = networkmanager.CfnGlobalNetworkProps( description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the global network.
Constraints: Maximum length of 256 characters.
- tags
The tags for the global network.