CfnNetworkProps
- class aws_cdk.aws_wickr.CfnNetworkProps(*, access_level, network_name)
Bases:
objectProperties for defining a
CfnNetwork.- Parameters:
access_level (
str) – The access level of the network, which determines available features and capabilities.network_name (
str) – The name of the network. Must be between 1 and 20 characters.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wickr-network.html
- 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 import aws_wickr as wickr cfn_network_props = wickr.CfnNetworkProps( access_level="accessLevel", network_name="networkName" )
Attributes
- access_level
The access level of the network, which determines available features and capabilities.
- network_name
The name of the network.
Must be between 1 and 20 characters.