Interface ActionContext.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActionContext.Builder,ActionContext>,SdkBuilder<ActionContext.Builder,ActionContext>,SdkPojo
- Enclosing class:
- ActionContext
public static interface ActionContext.Builder extends SdkPojo, CopyableBuilder<ActionContext.Builder,ActionContext>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionContext.BuilderactionExecutionId(String actionExecutionId)The system-generated unique ID that corresponds to an action's execution.ActionContext.Buildername(String name)The name of the action in the context of a job.-
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
-
name
ActionContext.Builder name(String name)
The name of the action in the context of a job.
- Parameters:
name- The name of the action in the context of a job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionExecutionId
ActionContext.Builder actionExecutionId(String actionExecutionId)
The system-generated unique ID that corresponds to an action's execution.
- Parameters:
actionExecutionId- The system-generated unique ID that corresponds to an action's execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-