Interface SageMakerFeatureStoreRuntimeClient
-
- All Superinterfaces:
AutoCloseable,AwsClient,SdkAutoCloseable,SdkClient
@Generated("software.amazon.awssdk:codegen") @ThreadSafe public interface SageMakerFeatureStoreRuntimeClient extends AwsClient
Service client for accessing Amazon SageMaker Feature Store Runtime. This can be created using the staticbuilder()method.Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.
Use the following operations to configure your
OnlineStoreandOfflineStorefeatures, and to create and manage feature groups:
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERVICE_METADATA_IDValue for looking up the service's metadata from theServiceMetadataProvider.static StringSERVICE_NAME
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default BatchGetRecordResponsebatchGetRecord(Consumer<BatchGetRecordRequest.Builder> batchGetRecordRequest)Retrieves a batch ofRecordsfrom aFeatureGroup.default BatchGetRecordResponsebatchGetRecord(BatchGetRecordRequest batchGetRecordRequest)Retrieves a batch ofRecordsfrom aFeatureGroup.static SageMakerFeatureStoreRuntimeClientBuilderbuilder()Create a builder that can be used to configure and create aSageMakerFeatureStoreRuntimeClient.static SageMakerFeatureStoreRuntimeClientcreate()Create aSageMakerFeatureStoreRuntimeClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.default DeleteRecordResponsedeleteRecord(Consumer<DeleteRecordRequest.Builder> deleteRecordRequest)Deletes aRecordfrom aFeatureGroupin theOnlineStore.default DeleteRecordResponsedeleteRecord(DeleteRecordRequest deleteRecordRequest)Deletes aRecordfrom aFeatureGroupin theOnlineStore.default GetRecordResponsegetRecord(Consumer<GetRecordRequest.Builder> getRecordRequest)Use forOnlineStoreserving from aFeatureStore.default GetRecordResponsegetRecord(GetRecordRequest getRecordRequest)Use forOnlineStoreserving from aFeatureStore.default PutRecordResponseputRecord(Consumer<PutRecordRequest.Builder> putRecordRequest)ThePutRecordAPI is used to ingest a list ofRecordsinto your feature group.default PutRecordResponseputRecord(PutRecordRequest putRecordRequest)ThePutRecordAPI is used to ingest a list ofRecordsinto your feature group.default SageMakerFeatureStoreRuntimeServiceClientConfigurationserviceClientConfiguration()static ServiceMetadataserviceMetadata()-
Methods inherited from interface software.amazon.awssdk.utils.SdkAutoCloseable
close
-
Methods inherited from interface software.amazon.awssdk.core.SdkClient
serviceName
-
-
-
-
Field Detail
-
SERVICE_NAME
static final String SERVICE_NAME
- See Also:
- Constant Field Values
-
SERVICE_METADATA_ID
static final String SERVICE_METADATA_ID
Value for looking up the service's metadata from theServiceMetadataProvider.- See Also:
- Constant Field Values
-
-
Method Detail
-
batchGetRecord
default BatchGetRecordResponse batchGetRecord(BatchGetRecordRequest batchGetRecordRequest) throws ValidationErrorException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
Retrieves a batch of
Recordsfrom aFeatureGroup.- Parameters:
batchGetRecordRequest-- Returns:
- Result of the BatchGetRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
batchGetRecord
default BatchGetRecordResponse batchGetRecord(Consumer<BatchGetRecordRequest.Builder> batchGetRecordRequest) throws ValidationErrorException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
Retrieves a batch of
Recordsfrom aFeatureGroup.
This is a convenience which creates an instance of the
BatchGetRecordRequest.Builderavoiding the need to create one manually viaBatchGetRecordRequest.builder()- Parameters:
batchGetRecordRequest- AConsumerthat will call methods onBatchGetRecordRequest.Builderto create a request.- Returns:
- Result of the BatchGetRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deleteRecord
default DeleteRecordResponse deleteRecord(DeleteRecordRequest deleteRecordRequest) throws ValidationErrorException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
Deletes a
Recordfrom aFeatureGroupin theOnlineStore. Feature Store supports bothSoftDeleteandHardDelete. ForSoftDelete(default), feature columns are set tonulland the record is no longer retrievable byGetRecordorBatchGetRecord. ForHardDelete, the completeRecordis removed from theOnlineStore. In both cases, Feature Store appends the deleted record marker to theOfflineStore. The deleted record marker is a record with the sameRecordIdentiferas the original, but withis_deletedvalue set toTrue,EventTimeset to the delete inputEventTime, and other feature values set tonull.Note that the
EventTimespecified inDeleteRecordshould be set later than theEventTimeof the existing record in theOnlineStorefor thatRecordIdentifer. If it is not, the deletion does not occur:-
For
SoftDelete, the existing (not deleted) record remains in theOnlineStore, though the delete record marker is still written to theOfflineStore. -
HardDeletereturnsEventTime:400 ValidationExceptionto indicate that the delete operation failed. No delete record marker is written to theOfflineStore.
When a record is deleted from the
OnlineStore, the deleted record marker is appended to theOfflineStore. If you have the Iceberg table format enabled for yourOfflineStore, you can remove all history of a record from theOfflineStoreusing Amazon Athena or Apache Spark. For information on how to hard delete a record from theOfflineStorewith the Iceberg table format enabled, see Delete records from the offline store.- Parameters:
deleteRecordRequest-- Returns:
- Result of the DeleteRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
-
deleteRecord
default DeleteRecordResponse deleteRecord(Consumer<DeleteRecordRequest.Builder> deleteRecordRequest) throws ValidationErrorException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
Deletes a
Recordfrom aFeatureGroupin theOnlineStore. Feature Store supports bothSoftDeleteandHardDelete. ForSoftDelete(default), feature columns are set tonulland the record is no longer retrievable byGetRecordorBatchGetRecord. ForHardDelete, the completeRecordis removed from theOnlineStore. In both cases, Feature Store appends the deleted record marker to theOfflineStore. The deleted record marker is a record with the sameRecordIdentiferas the original, but withis_deletedvalue set toTrue,EventTimeset to the delete inputEventTime, and other feature values set tonull.Note that the
EventTimespecified inDeleteRecordshould be set later than theEventTimeof the existing record in theOnlineStorefor thatRecordIdentifer. If it is not, the deletion does not occur:-
For
SoftDelete, the existing (not deleted) record remains in theOnlineStore, though the delete record marker is still written to theOfflineStore. -
HardDeletereturnsEventTime:400 ValidationExceptionto indicate that the delete operation failed. No delete record marker is written to theOfflineStore.
When a record is deleted from the
OnlineStore, the deleted record marker is appended to theOfflineStore. If you have the Iceberg table format enabled for yourOfflineStore, you can remove all history of a record from theOfflineStoreusing Amazon Athena or Apache Spark. For information on how to hard delete a record from theOfflineStorewith the Iceberg table format enabled, see Delete records from the offline store.
This is a convenience which creates an instance of the
DeleteRecordRequest.Builderavoiding the need to create one manually viaDeleteRecordRequest.builder()- Parameters:
deleteRecordRequest- AConsumerthat will call methods onDeleteRecordRequest.Builderto create a request.- Returns:
- Result of the DeleteRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
-
getRecord
default GetRecordResponse getRecord(GetRecordRequest getRecordRequest) throws ValidationErrorException, ResourceNotFoundException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
Use for
OnlineStoreserving from aFeatureStore. Only the latest records stored in theOnlineStorecan be retrieved. If no Record withRecordIdentifierValueis found, then an empty result is returned.- Parameters:
getRecordRequest-- Returns:
- Result of the GetRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.ResourceNotFoundException- A resource that is required to perform an action was not found.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getRecord
default GetRecordResponse getRecord(Consumer<GetRecordRequest.Builder> getRecordRequest) throws ValidationErrorException, ResourceNotFoundException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
Use for
OnlineStoreserving from aFeatureStore. Only the latest records stored in theOnlineStorecan be retrieved. If no Record withRecordIdentifierValueis found, then an empty result is returned.
This is a convenience which creates an instance of the
GetRecordRequest.Builderavoiding the need to create one manually viaGetRecordRequest.builder()- Parameters:
getRecordRequest- AConsumerthat will call methods onGetRecordRequest.Builderto create a request.- Returns:
- Result of the GetRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.ResourceNotFoundException- A resource that is required to perform an action was not found.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putRecord
default PutRecordResponse putRecord(PutRecordRequest putRecordRequest) throws ValidationErrorException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
The
PutRecordAPI is used to ingest a list ofRecordsinto your feature group.If a new record’s
EventTimeis greater, the new record is written to both theOnlineStoreandOfflineStore. Otherwise, the record is a historic record and it is written only to theOfflineStore.You can specify the ingestion to be applied to the
OnlineStore,OfflineStore, or both by using theTargetStoresrequest parameter.You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time,
ExpiresAt=EventTime+TtlDuration, by specifying theTtlDurationparameter. A record levelTtlDurationis set when specifying theTtlDurationparameter using thePutRecordAPI call. If the inputTtlDurationisnullor unspecified,TtlDurationis set to the default feature group levelTtlDuration. A record levelTtlDurationsupersedes the group levelTtlDuration.- Parameters:
putRecordRequest-- Returns:
- Result of the PutRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putRecord
default PutRecordResponse putRecord(Consumer<PutRecordRequest.Builder> putRecordRequest) throws ValidationErrorException, InternalFailureException, ServiceUnavailableException, AccessForbiddenException, AwsServiceException, SdkClientException, SageMakerFeatureStoreRuntimeException
The
PutRecordAPI is used to ingest a list ofRecordsinto your feature group.If a new record’s
EventTimeis greater, the new record is written to both theOnlineStoreandOfflineStore. Otherwise, the record is a historic record and it is written only to theOfflineStore.You can specify the ingestion to be applied to the
OnlineStore,OfflineStore, or both by using theTargetStoresrequest parameter.You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time,
ExpiresAt=EventTime+TtlDuration, by specifying theTtlDurationparameter. A record levelTtlDurationis set when specifying theTtlDurationparameter using thePutRecordAPI call. If the inputTtlDurationisnullor unspecified,TtlDurationis set to the default feature group levelTtlDuration. A record levelTtlDurationsupersedes the group levelTtlDuration.
This is a convenience which creates an instance of the
PutRecordRequest.Builderavoiding the need to create one manually viaPutRecordRequest.builder()- Parameters:
putRecordRequest- AConsumerthat will call methods onPutRecordRequest.Builderto create a request.- Returns:
- Result of the PutRecord operation returned by the service.
- Throws:
ValidationErrorException- There was an error validating your request.InternalFailureException- An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.ServiceUnavailableException- The service is currently unavailable.AccessForbiddenException- You do not have permission to perform an action.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.SageMakerFeatureStoreRuntimeException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
create
static SageMakerFeatureStoreRuntimeClient create()
Create aSageMakerFeatureStoreRuntimeClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.
-
builder
static SageMakerFeatureStoreRuntimeClientBuilder builder()
Create a builder that can be used to configure and create aSageMakerFeatureStoreRuntimeClient.
-
serviceMetadata
static ServiceMetadata serviceMetadata()
-
serviceClientConfiguration
default SageMakerFeatureStoreRuntimeServiceClientConfiguration serviceClientConfiguration()
- Specified by:
serviceClientConfigurationin interfaceAwsClient- Specified by:
serviceClientConfigurationin interfaceSdkClient
-
-