interface RuleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.WAFRegional.RuleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswafregional#RuleReference |
Java | software.amazon.awscdk.interfaces.regional.RuleReference |
Python | aws_cdk.interfaces.aws_wafregional.RuleReference |
TypeScript | aws-cdk-lib » interfaces » aws_wafregional » RuleReference |
A reference to a Rule resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafregional as interfaces_aws_wafregional } from 'aws-cdk-lib/interfaces';
const ruleReference: interfaces_aws_wafregional.RuleReference = {
ruleId: 'ruleId',
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | string | The Id of the Rule resource. |
ruleId
Type:
string
The Id of the Rule resource.

.NET
Go
Java
Python
TypeScript