@Stability(value=Stable)
public static interface CfnTrigger.ConditionProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getCrawlerName()
The name of the crawler to which this condition applies.
|
default String |
getCrawlState()
The state of the crawler to which this condition applies.
|
default String |
getJobName()
The name of the job whose `JobRuns` this condition applies to, and on which this trigger waits.
|
default String |
getLogicalOperator()
A logical operator.
|
default String |
getState()
The condition state.
|
@Stability(value=Stable) @Nullable default String getCrawlerName()
@Stability(value=Stable) @Nullable default String getCrawlState()
@Stability(value=Stable) @Nullable default String getJobName()
@Stability(value=Stable) @Nullable default String getLogicalOperator()
@Stability(value=Stable) @Nullable default String getState()
Currently, the values supported are SUCCEEDED , STOPPED , TIMEOUT , and FAILED .
@Stability(value=Stable) static CfnTrigger.ConditionProperty.Builder builder()
Copyright © 2022. All rights reserved.