Interface UpdateExperimentTemplateActionInputItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpdateExperimentTemplateActionInputItem.Builder,UpdateExperimentTemplateActionInputItem>,SdkBuilder<UpdateExperimentTemplateActionInputItem.Builder,UpdateExperimentTemplateActionInputItem>,SdkPojo
- Enclosing class:
- UpdateExperimentTemplateActionInputItem
public static interface UpdateExperimentTemplateActionInputItem.Builder extends SdkPojo, CopyableBuilder<UpdateExperimentTemplateActionInputItem.Builder,UpdateExperimentTemplateActionInputItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateExperimentTemplateActionInputItem.BuilderactionId(String actionId)The ID of the action.UpdateExperimentTemplateActionInputItem.Builderdescription(String description)A description for the action.UpdateExperimentTemplateActionInputItem.Builderparameters(Map<String,String> parameters)The parameters for the action, if applicable.UpdateExperimentTemplateActionInputItem.BuilderstartAfter(String... startAfter)The name of the action that must be completed before the current action starts.UpdateExperimentTemplateActionInputItem.BuilderstartAfter(Collection<String> startAfter)The name of the action that must be completed before the current action starts.UpdateExperimentTemplateActionInputItem.Buildertargets(Map<String,String> targets)The targets for the action.-
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, sdkFields
-
-
-
-
Method Detail
-
actionId
UpdateExperimentTemplateActionInputItem.Builder actionId(String actionId)
The ID of the action.
- Parameters:
actionId- The ID of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateExperimentTemplateActionInputItem.Builder description(String description)
A description for the action.
- Parameters:
description- A description for the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
UpdateExperimentTemplateActionInputItem.Builder parameters(Map<String,String> parameters)
The parameters for the action, if applicable.
- Parameters:
parameters- The parameters for the action, if applicable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
UpdateExperimentTemplateActionInputItem.Builder targets(Map<String,String> targets)
The targets for the action.
- Parameters:
targets- The targets for the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startAfter
UpdateExperimentTemplateActionInputItem.Builder startAfter(Collection<String> startAfter)
The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.
- Parameters:
startAfter- The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startAfter
UpdateExperimentTemplateActionInputItem.Builder startAfter(String... startAfter)
The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.
- Parameters:
startAfter- The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-