Interface CfnIPSetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPSetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:27.285Z")
@Stability(Stable)
public interface CfnIPSetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIPSetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.waf.*;
CfnIPSetMixinProps cfnIPSetMixinProps = CfnIPSetMixinProps.builder()
.ipSetDescriptors(List.of(Map.of(
"type", "type",
"value", "value")))
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIPSetMixinPropsstatic final classAn implementation forCfnIPSetMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIPSetMixinProps.Builderbuilder()default ObjectThe IP address type (IPV4orIPV6) and the IP address range (in CIDR notation) that web requests originate from.default StringgetName()The name of theIPSet.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpSetDescriptors
The IP address type (IPV4orIPV6) and the IP address range (in CIDR notation) that web requests originate from.If the
WebACLis associated with an Amazon CloudFront distribution and the viewer did not use an HTTP proxy or a load balancer to send the request, this is the value of the c-ip field in the CloudFront access logs.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIPSetPropsMixin.IPSetDescriptorProperty>- See Also:
-
getName
The name of theIPSet.You can't change the name of an
IPSetafter you create it.- See Also:
-
builder
- Returns:
- a
CfnIPSetMixinProps.BuilderofCfnIPSetMixinProps
-