Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchGetRecordIdentifier

import type { BatchGetRecordIdentifier } from "https://aws-api.deno.dev/v0.3/services/sagemakerfeaturestoreruntime.ts?docs=full";

The identifier that identifies the batch of Records you are retrieving in a batch.

interface BatchGetRecordIdentifier {
FeatureGroupName: string;
FeatureNames?: string[] | null;
RecordIdentifiersValueAsString: string[];
}

§Properties

§
FeatureGroupName: string
[src]

A FeatureGroupName containing Records you are retrieving in a batch.

§
FeatureNames?: string[] | null
[src]

List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.

§
RecordIdentifiersValueAsString: string[]
[src]

The value for a list of record identifiers in string format.