Class CfnWorkspaceIpGroup.IpRuleItemProperty
Describes a rule for an IP access control group.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WorkSpaces
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWorkspaceIpGroup.IpRuleItemProperty : CfnWorkspaceIpGroup.IIpRuleItemProperty
Syntax (vb)
Public Class CfnWorkspaceIpGroup.IpRuleItemProperty Implements CfnWorkspaceIpGroup.IIpRuleItemProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WorkSpaces;
var ipRuleItemProperty = new IpRuleItemProperty {
IpRule = "ipRule",
// the properties below are optional
RuleDesc = "ruleDesc"
};
Synopsis
Constructors
| IpRuleItemProperty() | Describes a rule for an IP access control group. |
Properties
| IpRule | The IP address range, in CIDR notation. |
| RuleDesc | The description of the rule. |
Constructors
IpRuleItemProperty()
Describes a rule for an IP access control group.
public IpRuleItemProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WorkSpaces;
var ipRuleItemProperty = new IpRuleItemProperty {
IpRule = "ipRule",
// the properties below are optional
RuleDesc = "ruleDesc"
};
Properties
IpRule
The IP address range, in CIDR notation.
public string IpRule { get; set; }
Property Value
Remarks
RuleDesc
The description of the rule.
public string? RuleDesc { get; set; }