public static interface TableVersionError.Builder extends SdkPojo, CopyableBuilder<TableVersionError.Builder,TableVersionError>
Modifier and Type | Method and Description |
---|---|
default TableVersionError.Builder |
errorDetail(Consumer<ErrorDetail.Builder> errorDetail)
Detail about the error.
|
TableVersionError.Builder |
errorDetail(ErrorDetail errorDetail)
Detail about the error.
|
TableVersionError.Builder |
tableName(String tableName)
The name of the table in question.
|
TableVersionError.Builder |
versionId(String versionId)
The ID value of the version in question.
|
copy
applyMutation, build
TableVersionError.Builder tableName(String tableName)
The name of the table in question.
tableName
- The name of the table in question.TableVersionError.Builder versionId(String versionId)
The ID value of the version in question. A VersionID
is a string representation of an integer.
Each version is incremented by 1.
versionId
- The ID value of the version in question. A VersionID
is a string representation of an
integer. Each version is incremented by 1.TableVersionError.Builder errorDetail(ErrorDetail errorDetail)
Detail about the error.
errorDetail
- Detail about the error.default TableVersionError.Builder errorDetail(Consumer<ErrorDetail.Builder> errorDetail)
Detail about the error.
This is a convenience that creates an instance of theErrorDetail.Builder
avoiding the need to create
one manually via ErrorDetail.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to errorDetail(ErrorDetail)
.errorDetail
- a consumer that will call methods on ErrorDetail.Builder
errorDetail(ErrorDetail)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.