String featureGroupName
The name of the feature group that the record belongs to.
String recordIdentifierValueAsString
The value for the RecordIdentifier in string format of a Record from a FeatureGroup
that is causing an error when attempting to be retrieved.
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.
String errorMessage
The error message of an error that has occurred when attempting to retrieve a record in the batch.
String featureGroupName
The name or Amazon Resource Name (ARN) of the FeatureGroup containing the records you are retrieving
in a batch.
List<E> recordIdentifiersValueAsString
The value for a list of record identifiers in string format.
List<E> featureNames
List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.
List<E> identifiers
A list containing the name or Amazon Resource Name (ARN) of the FeatureGroup, the list of names of
Features to be retrieved, and the corresponding RecordIdentifier values as strings.
String expirationTimeResponse
Parameter to request ExpiresAt in response. If Enabled, BatchGetRecord
will return the value of ExpiresAt, if it is not null. If Disabled and null,
BatchGetRecord will return null.
List<E> records
A list of Records you requested to be retrieved in batch.
List<E> errors
A list of errors that have occurred when retrieving a batch of Records.
List<E> unprocessedIdentifiers
A unprocessed list of FeatureGroup names, with their corresponding RecordIdentifier
value, and Feature name.
String featureGroupName
The FeatureGroupName containing Records you retrieved in a batch.
String recordIdentifierValueAsString
The value of the record identifier in string format.
List<E> record
The Record retrieved.
String expiresAt
The ExpiresAt ISO string of the requested record.
String featureGroupName
The name or Amazon Resource Name (ARN) of the feature group to delete the record from.
String recordIdentifierValueAsString
The value for the RecordIdentifier that uniquely identifies the record, in string format.
String eventTime
Timestamp indicating when the deletion event occurred. EventTime can be used to query data at a
certain point in time.
List<E> targetStores
A list of stores from which you're deleting the record. By default, Feature Store deletes the record from all of
the stores that you're using for the FeatureGroup.
String deletionMode
The name of the deletion mode for deleting the record. By default, the deletion mode is set to
SoftDelete.
String featureGroupName
The name or Amazon Resource Name (ARN) of the feature group from which you want to retrieve a record.
String recordIdentifierValueAsString
The value that corresponds to RecordIdentifier type and uniquely identifies the record in the
FeatureGroup.
List<E> featureNames
List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.
String expirationTimeResponse
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.
String featureGroupName
The name or Amazon Resource Name (ARN) of the feature group that you want to insert the record into.
List<E> record
List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following:
Use GetRecord to retrieve the latest record.
Update the record returned from GetRecord.
Use PutRecord to update feature values.
List<E> targetStores
A list of stores to which you're adding the record. By default, Feature Store adds the record to all of the
stores that you're using for the FeatureGroup.
TtlDuration ttlDuration
Time to live duration, where the record is hard deleted after the expiration time is reached;
ExpiresAt = EventTime + TtlDuration. For information on HardDelete, see
the
DeleteRecord API in the Amazon SageMaker API Reference guide.
Copyright © 2023. All rights reserved.