Interface BatchGetRecordResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetRecordResponse.Builder,BatchGetRecordResponse>,SageMakerFeatureStoreRuntimeResponse.Builder,SdkBuilder<BatchGetRecordResponse.Builder,BatchGetRecordResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetRecordResponse
public static interface BatchGetRecordResponse.Builder extends SageMakerFeatureStoreRuntimeResponse.Builder, SdkPojo, CopyableBuilder<BatchGetRecordResponse.Builder,BatchGetRecordResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetRecordResponse.Buildererrors(Collection<BatchGetRecordError> errors)A list of errors that have occurred when retrieving a batch of Records.BatchGetRecordResponse.Buildererrors(Consumer<BatchGetRecordError.Builder>... errors)A list of errors that have occurred when retrieving a batch of Records.BatchGetRecordResponse.Buildererrors(BatchGetRecordError... errors)A list of errors that have occurred when retrieving a batch of Records.BatchGetRecordResponse.Builderrecords(Collection<BatchGetRecordResultDetail> records)A list of Records you requested to be retrieved in batch.BatchGetRecordResponse.Builderrecords(Consumer<BatchGetRecordResultDetail.Builder>... records)A list of Records you requested to be retrieved in batch.BatchGetRecordResponse.Builderrecords(BatchGetRecordResultDetail... records)A list of Records you requested to be retrieved in batch.BatchGetRecordResponse.BuilderunprocessedIdentifiers(Collection<BatchGetRecordIdentifier> unprocessedIdentifiers)A unprocessed list ofFeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.BatchGetRecordResponse.BuilderunprocessedIdentifiers(Consumer<BatchGetRecordIdentifier.Builder>... unprocessedIdentifiers)A unprocessed list ofFeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.BatchGetRecordResponse.BuilderunprocessedIdentifiers(BatchGetRecordIdentifier... unprocessedIdentifiers)A unprocessed list ofFeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemakerfeaturestoreruntime.model.SageMakerFeatureStoreRuntimeResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
records
BatchGetRecordResponse.Builder records(Collection<BatchGetRecordResultDetail> records)
A list of Records you requested to be retrieved in batch.
- Parameters:
records- A list of Records you requested to be retrieved in batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
records
BatchGetRecordResponse.Builder records(BatchGetRecordResultDetail... records)
A list of Records you requested to be retrieved in batch.
- Parameters:
records- A list of Records you requested to be retrieved in batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
records
BatchGetRecordResponse.Builder records(Consumer<BatchGetRecordResultDetail.Builder>... records)
A list of Records you requested to be retrieved in batch.
This is a convenience method that creates an instance of theBatchGetRecordResultDetail.Builderavoiding the need to create one manually viaBatchGetRecordResultDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#records(List.) - Parameters:
records- a consumer that will call methods onBatchGetRecordResultDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#records(java.util.Collection)
-
errors
BatchGetRecordResponse.Builder errors(Collection<BatchGetRecordError> errors)
A list of errors that have occurred when retrieving a batch of Records.
- Parameters:
errors- A list of errors that have occurred when retrieving a batch of Records.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchGetRecordResponse.Builder errors(BatchGetRecordError... errors)
A list of errors that have occurred when retrieving a batch of Records.
- Parameters:
errors- A list of errors that have occurred when retrieving a batch of Records.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchGetRecordResponse.Builder errors(Consumer<BatchGetRecordError.Builder>... errors)
A list of errors that have occurred when retrieving a batch of Records.
This is a convenience method that creates an instance of theBatchGetRecordError.Builderavoiding the need to create one manually viaBatchGetRecordError.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#errors(List.) - Parameters:
errors- a consumer that will call methods onBatchGetRecordError.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
unprocessedIdentifiers
BatchGetRecordResponse.Builder unprocessedIdentifiers(Collection<BatchGetRecordIdentifier> unprocessedIdentifiers)
A unprocessed list of
FeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.- Parameters:
unprocessedIdentifiers- A unprocessed list ofFeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedIdentifiers
BatchGetRecordResponse.Builder unprocessedIdentifiers(BatchGetRecordIdentifier... unprocessedIdentifiers)
A unprocessed list of
FeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.- Parameters:
unprocessedIdentifiers- A unprocessed list ofFeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedIdentifiers
BatchGetRecordResponse.Builder unprocessedIdentifiers(Consumer<BatchGetRecordIdentifier.Builder>... unprocessedIdentifiers)
A unprocessed list of
This is a convenience method that creates an instance of theFeatureGroupnames, with their correspondingRecordIdentifiervalue, and Feature name.BatchGetRecordIdentifier.Builderavoiding the need to create one manually viaBatchGetRecordIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unprocessedIdentifiers(List.) - Parameters:
unprocessedIdentifiers- a consumer that will call methods onBatchGetRecordIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unprocessedIdentifiers(java.util.Collection)
-
-