public static interface CfnTrigger.PredicateProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.*; PredicateProperty predicateProperty = PredicateProperty.builder() .conditions(List.of(ConditionProperty.builder() .crawlerName("crawlerName") .crawlState("crawlState") .jobName("jobName") .logicalOperator("logicalOperator") .state("state") .build())) .logical("logical") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTrigger.PredicateProperty.Builder
A builder for
CfnTrigger.PredicateProperty |
static class |
CfnTrigger.PredicateProperty.Jsii$Proxy
An implementation for
CfnTrigger.PredicateProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTrigger.PredicateProperty.Builder |
builder() |
default java.lang.Object |
getConditions()
A list of the conditions that determine when the trigger will fire.
|
default java.lang.String |
getLogical()
An optional field if only one condition is listed.
|
default java.lang.Object getConditions()
default java.lang.String getLogical()
If multiple conditions are listed, then this field is required.
static CfnTrigger.PredicateProperty.Builder builder()