IPSetReference
- class aws_cdk.aws_wafv2.IPSetReference(*, ip_set_arn, ip_set_id, ip_set_name, scope)
Bases:
object
A reference to a IPSet resource.
- Parameters:
ip_set_arn (
str
) – The ARN of the IPSet resource.ip_set_id (
str
) – The Id of the IPSet resource.ip_set_name (
str
) – The Name of the IPSet resource.scope (
str
) – The Scope of the IPSet resource.
- 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_wafv2 as wafv2 i_pSet_reference = { "ip_set_arn": "ipSetArn", "ip_set_id": "ipSetId", "ip_set_name": "ipSetName", "scope": "scope" }
Attributes
- ip_set_arn
The ARN of the IPSet resource.
- ip_set_id
The Id of the IPSet resource.
- ip_set_name
The Name of the IPSet resource.
- scope
The Scope of the IPSet resource.