Interface UpsertRowsResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpsertRowsResult.Builder,UpsertRowsResult>,SdkBuilder<UpsertRowsResult.Builder,UpsertRowsResult>,SdkPojo
- Enclosing class:
- UpsertRowsResult
public static interface UpsertRowsResult.Builder extends SdkPojo, CopyableBuilder<UpsertRowsResult.Builder,UpsertRowsResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpsertRowsResult.BuilderrowIds(String... rowIds)The list of row ids that were changed as part of an upsert row operation.UpsertRowsResult.BuilderrowIds(Collection<String> rowIds)The list of row ids that were changed as part of an upsert row operation.UpsertRowsResult.BuilderupsertAction(String upsertAction)The result of the upsert action.UpsertRowsResult.BuilderupsertAction(UpsertAction upsertAction)The result of the upsert action.-
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
-
rowIds
UpsertRowsResult.Builder rowIds(Collection<String> rowIds)
The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.
- Parameters:
rowIds- The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowIds
UpsertRowsResult.Builder rowIds(String... rowIds)
The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.
- Parameters:
rowIds- The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
upsertAction
UpsertRowsResult.Builder upsertAction(String upsertAction)
The result of the upsert action.
- Parameters:
upsertAction- The result of the upsert action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UpsertAction,UpsertAction
-
upsertAction
UpsertRowsResult.Builder upsertAction(UpsertAction upsertAction)
The result of the upsert action.
- Parameters:
upsertAction- The result of the upsert action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UpsertAction,UpsertAction
-
-