interface CfnNetworkProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wickr.CfnNetworkProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswickr#CfnNetworkProps |
Java | software.amazon.awscdk.services.wickr.CfnNetworkProps |
Python | aws_cdk.aws_wickr.CfnNetworkProps |
TypeScript | aws-cdk-lib » aws_wickr » CfnNetworkProps |
Properties for defining a CfnNetwork.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wickr-network.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wickr as wickr } from 'aws-cdk-lib';
const cfnNetworkProps: wickr.CfnNetworkProps = {
accessLevel: 'accessLevel',
networkName: 'networkName',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The access level of the network, which determines available features and capabilities. |
| network | string | The name of the network. |
accessLevel
Type:
string
The access level of the network, which determines available features and capabilities.
networkName
Type:
string
The name of the network.
Must be between 1 and 20 characters.

.NET
Go
Java
Python
TypeScript