CfnIPSetProps
- class aws_cdk.aws_wafregional.CfnIPSetProps(*, name, ip_set_descriptors=None)
Bases:
objectProperties for defining a
CfnIPSet.- Parameters:
name (
str) – A friendly name or description of theIPSet. You can’t change the name of anIPSetafter you create it.ip_set_descriptors (
Union[IResolvable,Sequence[Union[IResolvable,IPSetDescriptorProperty,Dict[str,Any]]],None]) – The IP address type (IPV4orIPV6) and the IP address range (in CIDR notation) that web requests originate from.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_wafregional as wafregional cfn_iPSet_props = wafregional.CfnIPSetProps( name="name", # the properties below are optional ip_set_descriptors=[{ "type": "type", "value": "value" }] )
Attributes
- ip_set_descriptors
The IP address type (
IPV4orIPV6) and the IP address range (in CIDR notation) that web requests originate from.
- name
A friendly name or description of the
IPSet.You can’t change the name of an
IPSetafter you create it.