Interface BatchGetRecordError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetRecordError.Builder,BatchGetRecordError>,SdkBuilder<BatchGetRecordError.Builder,BatchGetRecordError>,SdkPojo
- Enclosing class:
- BatchGetRecordError
public static interface BatchGetRecordError.Builder extends SdkPojo, CopyableBuilder<BatchGetRecordError.Builder,BatchGetRecordError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetRecordError.BuildererrorCode(String errorCode)The error code of an error that has occurred when attempting to retrieve a batch of Records.BatchGetRecordError.BuildererrorMessage(String errorMessage)The error message of an error that has occurred when attempting to retrieve a record in the batch.BatchGetRecordError.BuilderfeatureGroupName(String featureGroupName)The name of the feature group that the record belongs to.BatchGetRecordError.BuilderrecordIdentifierValueAsString(String recordIdentifierValueAsString)The value for theRecordIdentifierin string format of a Record from aFeatureGroupthat is causing an error when attempting to be retrieved.-
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
-
featureGroupName
BatchGetRecordError.Builder featureGroupName(String featureGroupName)
The name of the feature group that the record belongs to.
- Parameters:
featureGroupName- The name of the feature group that the record belongs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordIdentifierValueAsString
BatchGetRecordError.Builder recordIdentifierValueAsString(String recordIdentifierValueAsString)
The value for the
RecordIdentifierin string format of a Record from aFeatureGroupthat is causing an error when attempting to be retrieved.- Parameters:
recordIdentifierValueAsString- The value for theRecordIdentifierin string format of a Record from aFeatureGroupthat is causing an error when attempting to be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchGetRecordError.Builder errorCode(String errorCode)
The error code of an error that has occurred when attempting to retrieve a batch of Records. For more information on errors, see Errors.
- Parameters:
errorCode- The error code of an error that has occurred when attempting to retrieve a batch of Records. For more information on errors, see Errors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
BatchGetRecordError.Builder errorMessage(String errorMessage)
The error message of an error that has occurred when attempting to retrieve a record in the batch.
- Parameters:
errorMessage- The error message of an error that has occurred when attempting to retrieve a record in the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-