interface CfnIPSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAF.Mixins.CfnIPSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswaf/mixins#CfnIPSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.waf.mixins.CfnIPSetMixinProps |
Python | aws_cdk.mixins_preview.aws_waf.mixins.CfnIPSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_waf » mixins » CfnIPSetMixinProps |
Properties for CfnIPSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as waf_mixins } from '@aws-cdk/mixins-preview/aws-waf';
const cfnIPSetMixinProps: waf_mixins.CfnIPSetMixinProps = {
ipSetDescriptors: [{
type: 'type',
value: 'value',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | IResolvable | (IResolvable | IPSet)[] | The IP address type ( IPV4 or IPV6 ) and the IP address range (in CIDR notation) that web requests originate from. |
| name? | string | The name of the IPSet . |
ipSetDescriptors?
Type:
IResolvable | (IResolvable | IPSet)[]
(optional)
The IP address type ( IPV4 or IPV6 ) and the IP address range (in CIDR notation) that web requests originate from.
If the WebACL is 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.
name?
Type:
string
(optional)
The name of the IPSet .
You can't change the name of an IPSet after you create it.

.NET
Go
Java
Python
TypeScript