Skip to content

ListRecords

Source: src/AWS/SageMaker/ListRecords.ts

Runtime binding for sagemaker:ListRecords — list the record-identifier values stored in a FeatureGroup’s online store.

Bind this operation to a FeatureGroup inside a function runtime to get a callable that automatically injects the feature group name. Use it to discover which records exist without retrieving the full record data; paginate with NextToken.

// init
const listRecords = yield* AWS.SageMaker.ListRecords(featureGroup);
// runtime
const { RecordIdentifiers } = yield* listRecords({ MaxResults: 100 });