interface ActionConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryRule.ActionConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryRule_ActionConditionProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryRule.ActionConditionProperty |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryRule.ActionConditionProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryRule » ActionConditionProperty |
Condition that matches based on the specific WAF action taken on the request.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const actionConditionProperty: observabilityadmin.CfnTelemetryRule.ActionConditionProperty = {
action: 'action',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | The WAF action to match against (ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT). |
action?
Type:
string
(optional)
The WAF action to match against (ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT).

.NET
Go
Java
Python
TypeScript