interface RuleGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.RuleGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#RuleGroupReference |
Java | software.amazon.awscdk.services.wafv2.RuleGroupReference |
Python | aws_cdk.aws_wafv2.RuleGroupReference |
TypeScript | aws-cdk-lib » aws_wafv2 » RuleGroupReference |
A reference to a RuleGroup 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 ruleGroupReference: wafv2.RuleGroupReference = {
ruleGroupArn: 'ruleGroupArn',
ruleGroupId: 'ruleGroupId',
ruleGroupName: 'ruleGroupName',
scope: 'scope',
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | string | The ARN of the RuleGroup resource. |
| rule | string | The Id of the RuleGroup resource. |
| rule | string | The Name of the RuleGroup resource. |
| scope | string | The Scope of the RuleGroup resource. |
ruleGroupArn
Type:
string
The ARN of the RuleGroup resource.
ruleGroupId
Type:
string
The Id of the RuleGroup resource.
ruleGroupName
Type:
string
The Name of the RuleGroup resource.
scope
Type:
string
The Scope of the RuleGroup resource.

.NET
Go
Java
Python
TypeScript