ConditionOptions
- class aws_cdk.aws_glue.ConditionOptions(*, logical_operator=None)
Bases:
objectOptions shared by all trigger conditions.
- Parameters:
logical_operator (
Optional[ConditionLogicalOperator]) – The logical operator for the condition. Default: ConditionLogicalOperator.EQUALS- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_glue as glue condition_options = glue.ConditionOptions( logical_operator=glue.ConditionLogicalOperator.EQUALS )
Attributes
- logical_operator
The logical operator for the condition.
- Default:
ConditionLogicalOperator.EQUALS