Interface RecommendedAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecommendedAction.Builder,RecommendedAction>,SdkBuilder<RecommendedAction.Builder,RecommendedAction>,SdkPojo
- Enclosing class:
- RecommendedAction
public static interface RecommendedAction.Builder extends SdkPojo, CopyableBuilder<RecommendedAction.Builder,RecommendedAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecommendedAction.Buildercommand(String command)The command to run.RecommendedAction.Builderdatabase(String database)The database name to perform the action on.RecommendedAction.Buildertext(String text)The specific instruction about the command.RecommendedAction.Buildertype(String type)The type of command.RecommendedAction.Buildertype(RecommendedActionType type)The type of command.-
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
-
text
RecommendedAction.Builder text(String text)
The specific instruction about the command.
- Parameters:
text- The specific instruction about the command.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
database
RecommendedAction.Builder database(String database)
The database name to perform the action on. Only applicable if the type of command is SQL.
- Parameters:
database- The database name to perform the action on. Only applicable if the type of command is SQL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
command
RecommendedAction.Builder command(String command)
The command to run.
- Parameters:
command- The command to run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
RecommendedAction.Builder type(String type)
The type of command.
- Parameters:
type- The type of command.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecommendedActionType,RecommendedActionType
-
type
RecommendedAction.Builder type(RecommendedActionType type)
The type of command.
- Parameters:
type- The type of command.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecommendedActionType,RecommendedActionType
-
-