Interface FunctionRef.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<FunctionRef.Builder,,FunctionRef> SdkBuilder<FunctionRef.Builder,,FunctionRef> SdkPojo
- Enclosing class:
FunctionRef
@Mutable
@NotThreadSafe
public static interface FunctionRef.Builder
extends SdkPojo, CopyableBuilder<FunctionRef.Builder,FunctionRef>
-
Method Summary
Modifier and TypeMethodDescriptionfunctionId(String functionId) The identifier of the child function to execute in this step.runCondition(String runCondition) An optional expression that evaluates to a boolean.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
runCondition
An optional expression that evaluates to a boolean. MediaTailor evaluates this expression immediately before running the step, using the accumulated state at that point in the sequence. If the expression evaluates to
false, MediaTailor skips the step and moves to the next one. If omitted, the step always runs.- Parameters:
runCondition- An optional expression that evaluates to a boolean. MediaTailor evaluates this expression immediately before running the step, using the accumulated state at that point in the sequence. If the expression evaluates tofalse, MediaTailor skips the step and moves to the next one. If omitted, the step always runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionId
The identifier of the child function to execute in this step.
- Parameters:
functionId- The identifier of the child function to execute in this step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-