interface IPSetReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.WAFv2.IPSetReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#IPSetReference | 
|  Java | software.amazon.awscdk.services.wafv2.IPSetReference | 
|  Python | aws_cdk.aws_wafv2.IPSetReference | 
|  TypeScript | aws-cdk-lib»aws_wafv2»IPSetReference | 
A reference to a IPSet resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
const iPSetReference: wafv2.IPSetReference = {
  ipSetArn: 'ipSetArn',
  ipSetId: 'ipSetId',
  ipSetName: 'ipSetName',
  scope: 'scope',
};
Properties
| Name | Type | Description | 
|---|---|---|
| ip | string | The ARN of the IPSet resource. | 
| ip | string | The Id of the IPSet resource. | 
| ip | string | The Name of the IPSet resource. | 
| scope | string | The Scope of the IPSet resource. | 
ipSetArn
Type:
string
The ARN of the IPSet resource.
ipSetId
Type:
string
The Id of the IPSet resource.
ipSetName
Type:
string
The Name of the IPSet resource.
scope
Type:
string
The Scope of the IPSet resource.
