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 ofFeature
s to be retrieved, and the correspondingRecordIdentifier
values as strings.ExpirationTimeResponse
Parameter to request
ExpiresAt
in response. IfEnabled
,batch_get_record
will return the value ofExpiresAt
, if it is not null. IfDisabled
and null,batch_get_record
will 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"
)
)
)
)