public static interface CfnTrigger.ConditionProperty
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.*; ConditionProperty conditionProperty = ConditionProperty.builder() .crawlerName("crawlerName") .crawlState("crawlState") .jobName("jobName") .logicalOperator("logicalOperator") .state("state") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTrigger.ConditionProperty.Builder
A builder for
CfnTrigger.ConditionProperty |
static class |
CfnTrigger.ConditionProperty.Jsii$Proxy
An implementation for
CfnTrigger.ConditionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTrigger.ConditionProperty.Builder |
builder() |
default java.lang.String |
getCrawlerName()
The name of the crawler to which this condition applies.
|
default java.lang.String |
getCrawlState()
The state of the crawler to which this condition applies.
|
default java.lang.String |
getJobName()
The name of the job whose `JobRuns` this condition applies to, and on which this trigger waits.
|
default java.lang.String |
getLogicalOperator()
A logical operator.
|
default java.lang.String |
getState()
The condition state.
|
default java.lang.String getCrawlerName()
default java.lang.String getCrawlState()
default java.lang.String getJobName()
default java.lang.String getLogicalOperator()
default java.lang.String getState()
Currently, the values supported are SUCCEEDED
, STOPPED
, TIMEOUT
, and FAILED
.
static CfnTrigger.ConditionProperty.Builder builder()