interface ConditionOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.ConditionOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#ConditionOptions |
Java | software.amazon.awscdk.services.glue.ConditionOptions |
Python | aws_cdk.aws_glue.ConditionOptions |
TypeScript (source) | aws-cdk-lib » aws_glue » ConditionOptions |
Options shared by all trigger conditions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const conditionOptions: glue.ConditionOptions = {
logicalOperator: glue.ConditionLogicalOperator.EQUALS,
};
Properties
| Name | Type | Description |
|---|---|---|
| logical | Condition | The logical operator for the condition. |
logicalOperator?
Type:
Condition
(optional, default: ConditionLogicalOperator.EQUALS)
The logical operator for the condition.

.NET
Go
Java
Python
TypeScript (