SageMakerFeatureStoreRuntime / Client / get_record
get_record#
- SageMakerFeatureStoreRuntime.Client.get_record(**kwargs)#
- Use for - OnlineStoreserving from a- FeatureStore. Only the latest records stored in the- OnlineStorecan be retrieved. If no Record with- RecordIdentifierValueis found, then an empty result is returned.- See also: AWS API Documentation - Request Syntax- response = client.get_record( FeatureGroupName='string', RecordIdentifierValueAsString='string', FeatureNames=[ 'string', ], ExpirationTimeResponse='Enabled'|'Disabled' ) - Parameters:
- FeatureGroupName (string) – - [REQUIRED] - The name or Amazon Resource Name (ARN) of the feature group from which you want to retrieve a record. 
- RecordIdentifierValueAsString (string) – - [REQUIRED] - The value that corresponds to - RecordIdentifiertype and uniquely identifies the record in the- FeatureGroup.
- FeatureNames (list) – - List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned. - (string) – 
 
- ExpirationTimeResponse (string) – Parameter to request - ExpiresAtin response. If- Enabled,- GetRecordwill return the value of- ExpiresAt, if it is not null. If- Disabledand null,- GetRecordwill return null.
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'Record': [ { 'FeatureName': 'string', 'ValueAsString': 'string', 'ValueAsStringList': [ 'string', ] }, ], 'ExpiresAt': 'string' } - Response Structure- (dict) – - Record (list) – - The record you requested. A list of - FeatureValues.- (dict) – - The value associated with a feature. - FeatureName (string) – - The name of a feature that a feature value corresponds to. 
- ValueAsString (string) – - The value in string format associated with a feature. Used when your - CollectionTypeis- None. Note that features types can be- String,- Integral, or- Fractional. This value represents all three types as a string.
- ValueAsStringList (list) – - The list of values in string format associated with a feature. Used when your - CollectionTypeis a- List,- Set, or- Vector. Note that features types can be- String,- Integral, or- Fractional. These values represents all three types as a string.- (string) – 
 
 
 
- ExpiresAt (string) – - The - ExpiresAtISO string of the requested record.
 
 
 - Exceptions- SageMakerFeatureStoreRuntime.Client.exceptions.ValidationError
- SageMakerFeatureStoreRuntime.Client.exceptions.ResourceNotFound
- SageMakerFeatureStoreRuntime.Client.exceptions.InternalFailure
- SageMakerFeatureStoreRuntime.Client.exceptions.ServiceUnavailable
- SageMakerFeatureStoreRuntime.Client.exceptions.AccessForbidden