Interface CfnIpAccessSettings.IpRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIpAccessSettings.IpRuleProperty.Jsii$Proxy
- Enclosing class:
CfnIpAccessSettings
@Stability(Stable)
public static interface CfnIpAccessSettings.IpRuleProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.workspacesweb.*;
IpRuleProperty ipRuleProperty = IpRuleProperty.builder()
.ipRange("ipRange")
// the properties below are optional
.description("description")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIpAccessSettings.IpRulePropertystatic final classAn implementation forCfnIpAccessSettings.IpRuleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpRange
The IP range of the IP rule.This can either be a single IP address or a range using CIDR notation.
- See Also:
-
getDescription
The description of the IP rule.- See Also:
-
builder
-