Interface TableVersionError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableVersionError.Builder,TableVersionError>,SdkBuilder<TableVersionError.Builder,TableVersionError>,SdkPojo
- Enclosing class:
- TableVersionError
public static interface TableVersionError.Builder extends SdkPojo, CopyableBuilder<TableVersionError.Builder,TableVersionError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableVersionError.BuildererrorDetail(Consumer<ErrorDetail.Builder> errorDetail)The details about the error.TableVersionError.BuildererrorDetail(ErrorDetail errorDetail)The details about the error.TableVersionError.BuildertableName(String tableName)The name of the table in question.TableVersionError.BuilderversionId(String versionId)The ID value of the version in question.-
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
-
tableName
TableVersionError.Builder tableName(String tableName)
The name of the table in question.
- Parameters:
tableName- The name of the table in question.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionId
TableVersionError.Builder versionId(String versionId)
The ID value of the version in question. A
VersionIDis a string representation of an integer. Each version is incremented by 1.- Parameters:
versionId- The ID value of the version in question. AVersionIDis a string representation of an integer. Each version is incremented by 1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetail
TableVersionError.Builder errorDetail(ErrorDetail errorDetail)
The details about the error.
- Parameters:
errorDetail- The details about the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetail
default TableVersionError.Builder errorDetail(Consumer<ErrorDetail.Builder> errorDetail)
The details about the error.
This is a convenience method that creates an instance of theErrorDetail.Builderavoiding the need to create one manually viaErrorDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerrorDetail(ErrorDetail).- Parameters:
errorDetail- a consumer that will call methods onErrorDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
errorDetail(ErrorDetail)
-
-