interface RegexPatternSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.WAFv2.RegexPatternSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswafv2#RegexPatternSetReference |
Java | software.amazon.awscdk.interfaces.wafv2.RegexPatternSetReference |
Python | aws_cdk.interfaces.aws_wafv2.RegexPatternSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_wafv2 » RegexPatternSetReference |
A reference to a RegexPatternSet 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 interfaces_aws_wafv2 } from 'aws-cdk-lib/interfaces';
const regexPatternSetReference: interfaces_aws_wafv2.RegexPatternSetReference = {
regexPatternSetArn: 'regexPatternSetArn',
regexPatternSetId: 'regexPatternSetId',
regexPatternSetName: 'regexPatternSetName',
scope: 'scope',
};
Properties
| Name | Type | Description |
|---|---|---|
| regex | string | The ARN of the RegexPatternSet resource. |
| regex | string | The Id of the RegexPatternSet resource. |
| regex | string | The Name of the RegexPatternSet resource. |
| scope | string | The Scope of the RegexPatternSet resource. |
regexPatternSetArn
Type:
string
The ARN of the RegexPatternSet resource.
regexPatternSetId
Type:
string
The Id of the RegexPatternSet resource.
regexPatternSetName
Type:
string
The Name of the RegexPatternSet resource.
scope
Type:
string
The Scope of the RegexPatternSet resource.

.NET
Go
Java
Python
TypeScript