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