Interface CfnFlowPropsMixin.ConditionFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.ConditionFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.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.cfnpropertymixins.services.bedrock.*;
ConditionFlowNodeConfigurationProperty conditionFlowNodeConfigurationProperty = ConditionFlowNodeConfigurationProperty.builder()
.conditions(List.of(FlowConditionProperty.builder()
.expression("expression")
.name("name")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.ConditionFlowNodeConfigurationPropertystatic final classAn implementation forCfnFlowPropsMixin.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: '<'eitherIResolvableorCfnFlowPropsMixin.FlowConditionProperty>- See Also:
-
builder
@Stability(Stable) static CfnFlowPropsMixin.ConditionFlowNodeConfigurationProperty.Builder builder()
-