interface CfnWorkspaceIpGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpaces.CfnWorkspaceIpGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspaces#CfnWorkspaceIpGroupProps |
Java | software.amazon.awscdk.services.workspaces.CfnWorkspaceIpGroupProps |
Python | aws_cdk.aws_workspaces.CfnWorkspaceIpGroupProps |
TypeScript | aws-cdk-lib » aws_workspaces » CfnWorkspaceIpGroupProps |
Properties for defining a CfnWorkspaceIpGroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspaces as workspaces } from 'aws-cdk-lib';
const cfnWorkspaceIpGroupProps: workspaces.CfnWorkspaceIpGroupProps = {
groupName: 'groupName',
// the properties below are optional
groupDesc: 'groupDesc',
tags: [{
key: 'key',
value: 'value',
}],
userRules: [{
ipRule: 'ipRule',
// the properties below are optional
ruleDesc: 'ruleDesc',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The name of the group. |
| group | string | The description of the group. |
| tags? | Cfn[] | The tags for the IP access control group. |
| user | IResolvable | (IResolvable | Ip)[] | The rules for the IP access control group. |
groupName
Type:
string
The name of the group.
groupDesc?
Type:
string
(optional)
The description of the group.
tags?
Type:
Cfn[]
(optional)
The tags for the IP access control group.
userRules?
Type:
IResolvable | (IResolvable | Ip)[]
(optional)
The rules for the IP access control group.

.NET
Go
Java
Python
TypeScript