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.
Listing Records
Section titled “Listing Records”// initconst listRecords = yield* AWS.SageMaker.ListRecords(featureGroup);
// runtimeconst { RecordIdentifiers } = yield* listRecords({ MaxResults: 100 });