@Stability(value=Stable)
public static interface CfnTrigger.PredicateProperty
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.*;
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 Object |
getConditions()
A list of the conditions that determine when the trigger will fire.
|
default String |
getLogical()
An optional field if only one condition is listed.
|
@Stability(value=Stable) @Nullable default Object getConditions()
@Stability(value=Stable) @Nullable default String getLogical()
If multiple conditions are listed, then this field is required.
@Stability(value=Stable) static CfnTrigger.PredicateProperty.Builder builder()
Copyright © 2022. All rights reserved.