Interface CfnFlow.FlowConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.FlowConditionProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.FlowConditionProperty
extends software.amazon.jsii.JsiiSerializable
Defines a condition in the condition node.
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.bedrock.*;
FlowConditionProperty flowConditionProperty = FlowConditionProperty.builder()
.name("name")
// the properties below are optional
.expression("expression")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlow.FlowConditionPropertystatic final classAn implementation forCfnFlow.FlowConditionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the condition that you can reference.- See Also:
-
getExpression
Defines the condition.You must refer to at least one of the inputs in the condition. For more information, expand the Condition node section in Node types in prompt flows .
- See Also:
-
builder
-