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¶
sagemakerfeaturestoreruntime_batch_get_record(Identifiers,
ExpirationTimeResponse)
Arguments¶
Identifiers |
[required] A list containing the name or Amazon Resource Name
(ARN) of the |
ExpirationTimeResponse |
Parameter to request |
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"
)
)
)
)
Request syntax¶
svc$batch_get_record(
Identifiers = list(
list(
FeatureGroupName = "string",
RecordIdentifiersValueAsString = list(
"string"
),
FeatureNames = list(
"string"
)
)
),
ExpirationTimeResponse = "Enabled"|"Disabled"
)