listRecords
inline suspend fun SageMakerFeatureStoreRuntimeClient.listRecords(crossinline block: ListRecordsRequest.Builder.() -> Unit): ListRecordsResponse
Lists the RecordIdentifier values of all records stored in a FeatureGroup's OnlineStore. This enables you to discover which records exist without retrieving the full record data.
Samples
// List record identifiers from a feature group
val resp = sageMakerFeatureStoreRuntimeClient.listRecords {
featureGroupName = "my-feature-group"
maxResults = 10
}Content copied to clipboard