interface CfnIPSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFRegional.CfnIPSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafregional#CfnIPSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafregional.CfnIPSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wafregional.CfnIPSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafregional » CfnIPSetMixinProps |
Properties for CfnIPSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafregional as wafregional } from '@aws-cdk/cfn-property-mixins';
const cfnIPSetMixinProps: wafregional.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 | A friendly name or description 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.
name?
Type:
string
(optional)
A friendly name or description of the IPSet .
You can't change the name of an IPSet after you create it.

.NET
Go
Java
Python
TypeScript