interface IpRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnIpAccessSettingsPropsMixin.IpRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnIpAccessSettingsPropsMixin_IpRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnIpAccessSettingsPropsMixin.IpRuleProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnIpAccessSettingsPropsMixin.IpRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnIpAccessSettingsPropsMixin » IpRuleProperty |
The IP rules of the IP access settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const ipRuleProperty: workspacesweb_mixins.CfnIpAccessSettingsPropsMixin.IpRuleProperty = {
description: 'description',
ipRange: 'ipRange',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the IP rule. |
| ip | string | The IP range of the IP rule. |
description?
Type:
string
(optional)
The description of the IP rule.
ipRange?
Type:
string
(optional)
The IP range of the IP rule.
This can either be a single IP address or a range using CIDR notation.

.NET
Go
Java
Python
TypeScript