Interface CfnFlow.ConditionFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.ConditionFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.ConditionFlowNodeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Defines a condition node in your flow.
You can specify conditions that determine which node comes next in the flow. For more information, see Node types in a flow in the Amazon Bedrock User Guide.
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.*;
ConditionFlowNodeConfigurationProperty conditionFlowNodeConfigurationProperty = ConditionFlowNodeConfigurationProperty.builder()
.conditions(List.of(FlowConditionProperty.builder()
.name("name")
// the properties below are optional
.expression("expression")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlow.ConditionFlowNodeConfigurationPropertystatic final classAn implementation forCfnFlow.ConditionFlowNodeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditions
An array of conditions.Each member contains the name of a condition and an expression that defines the condition.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFlow.FlowConditionProperty>- See Also:
-
builder
-