Batch Get Record
| sagemakerfeaturestoreruntime_batch_get_record | R Documentation |
Retrieves a batch of Records from a FeatureGroup¶
Description¶
Retrieves a batch of Records from a FeatureGroup.
Usage¶
Arguments¶
Identifiers[required] A list containing the name or Amazon Resource Name (ARN) of the
FeatureGroup, the list of names ofFeatures to be retrieved, and the correspondingRecordIdentifiervalues as strings.ExpirationTimeResponseParameter to request
ExpiresAtin response. IfEnabled,batch_get_recordwill return the value ofExpiresAt, if it is not null. IfDisabledand null,batch_get_recordwill return null.
Value¶
A list with the following syntax:
list(
Records = list(
list(
FeatureGroupName = "string",
RecordIdentifierValueAsString = "string",
Record = list(
list(
FeatureName = "string",
ValueAsString = "string",
ValueAsStringList = list(
"string"
)
)
),
ExpiresAt = "string"
)
),
Errors = list(
list(
FeatureGroupName = "string",
RecordIdentifierValueAsString = "string",
ErrorCode = "string",
ErrorMessage = "string"
)
),
UnprocessedIdentifiers = list(
list(
FeatureGroupName = "string",
RecordIdentifiersValueAsString = list(
"string"
),
FeatureNames = list(
"string"
)
)
)
)