Skip to content

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 FeatureGroup, the list of names of Features to be retrieved, and the corresponding RecordIdentifier values as strings.

ExpirationTimeResponse

Parameter to request ExpiresAt in response. If Enabled, batch_get_record will return the value of ExpiresAt, if it is not null. If Disabled 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"
      )
    )
  )
)

Request syntax

svc$batch_get_record(
  Identifiers = list(
    list(
      FeatureGroupName = "string",
      RecordIdentifiersValueAsString = list(
        "string"
      ),
      FeatureNames = list(
        "string"
      )
    )
  ),
  ExpirationTimeResponse = "Enabled"|"Disabled"
)