Interface RenderableTask.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RenderableTask.Builder,RenderableTask>
,SdkBuilder<RenderableTask.Builder,RenderableTask>
,SdkPojo
- Enclosing class:
- RenderableTask
public static interface RenderableTask.Builder extends SdkPojo, CopyableBuilder<RenderableTask.Builder,RenderableTask>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RenderableTask.Builder
input(String input)
A JSON object that contains values for the variables defined in the template.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
input
RenderableTask.Builder input(String input)
A JSON object that contains values for the variables defined in the template. It is made available to the template under the substitution variable
task.input
. For example, if you define a variabletask.input.text
in your template, you can supply the variable in the JSON object as"text": "sample text"
.- Parameters:
input
- A JSON object that contains values for the variables defined in the template. It is made available to the template under the substitution variabletask.input
. For example, if you define a variabletask.input.text
in your template, you can supply the variable in the JSON object as"text": "sample text"
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-