interface IpRuleItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpaces.CfnWorkspaceIpGroup.IpRuleItemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspaces#CfnWorkspaceIpGroup_IpRuleItemProperty |
Java | software.amazon.awscdk.services.workspaces.CfnWorkspaceIpGroup.IpRuleItemProperty |
Python | aws_cdk.aws_workspaces.CfnWorkspaceIpGroup.IpRuleItemProperty |
TypeScript | aws-cdk-lib » aws_workspaces » CfnWorkspaceIpGroup » IpRuleItemProperty |
Describes a rule for an IP access control group.
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 ipRuleItemProperty: workspaces.CfnWorkspaceIpGroup.IpRuleItemProperty = {
ipRule: 'ipRule',
// the properties below are optional
ruleDesc: 'ruleDesc',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The IP address range, in CIDR notation. |
| rule | string | The description of the rule. |
ipRule
Type:
string
The IP address range, in CIDR notation.
ruleDesc?
Type:
string
(optional)
The description of the rule.

.NET
Go
Java
Python
TypeScript