aws.sagemaker_featurestore_runtime.get_record
Example SQL Queries
SELECT * FROMaws.sagemaker_featurestore_runtime.get_recordWHERE"feature_group_name" = 'VALUE'AND "record_identifier_value_as_string" = 'VALUE';Description
Use for OnlineStore serving from a FeatureStore. Only the latest records stored in the OnlineStore can be retrieved. If no Record with RecordIdentifierValue is found, then an empty result is returned.
Table Definition
| Column Name | Column Data Type |
|---|---|
| feature_group_name Required Input Column The name or Amazon Resource Name (ARN) of the feature group from which you want to retrieve a record. | VARCHAR |
| record_identifier_value_as_string Required Input Column The value that corresponds to RecordIdentifier type and uniquely identifies the record in the FeatureGroup. | VARCHAR |
| expiration_time_response Input Column Parameter to request ExpiresAt in response. If Enabled, GetRecord will return the value of ExpiresAt, if it is not null. If Disabled and null, GetRecord will return null. | VARCHAR |
| feature_names Input Column List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned. | VARCHAR[] |
Show child fields
| |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| expires_at The ExpiresAt ISO string of the requested record. | VARCHAR |
| record The record you requested. A list of FeatureValues. | STRUCT( |
Show child fields
| |