Interface PreparedStatement.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PreparedStatement.Builder,PreparedStatement>,SdkBuilder<PreparedStatement.Builder,PreparedStatement>,SdkPojo
- Enclosing class:
- PreparedStatement
public static interface PreparedStatement.Builder extends SdkPojo, CopyableBuilder<PreparedStatement.Builder,PreparedStatement>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PreparedStatement.Builderdescription(String description)The description of the prepared statement.PreparedStatement.BuilderlastModifiedTime(Instant lastModifiedTime)The last modified time of the prepared statement.PreparedStatement.BuilderqueryStatement(String queryStatement)The query string for the prepared statement.PreparedStatement.BuilderstatementName(String statementName)The name of the prepared statement.PreparedStatement.BuilderworkGroupName(String workGroupName)The name of the workgroup to which the prepared statement belongs.-
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
-
statementName
PreparedStatement.Builder statementName(String statementName)
The name of the prepared statement.
- Parameters:
statementName- The name of the prepared statement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStatement
PreparedStatement.Builder queryStatement(String queryStatement)
The query string for the prepared statement.
- Parameters:
queryStatement- The query string for the prepared statement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workGroupName
PreparedStatement.Builder workGroupName(String workGroupName)
The name of the workgroup to which the prepared statement belongs.
- Parameters:
workGroupName- The name of the workgroup to which the prepared statement belongs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
PreparedStatement.Builder description(String description)
The description of the prepared statement.
- Parameters:
description- The description of the prepared statement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
PreparedStatement.Builder lastModifiedTime(Instant lastModifiedTime)
The last modified time of the prepared statement.
- Parameters:
lastModifiedTime- The last modified time of the prepared statement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-