listDatasetLabels
This operation applies only to Amazon Rekognition Custom Labels.
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images.
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images in the Amazon Rekognition Custom Labels Developer Guide.
Samples
fun main() {
//sampleStart
// Lists the JSON line entries in an Amazon Rekognition Custom Labels dataset.
val resp = rekognitionClient.listDatasetLabels {
datasetArn = "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106"
nextToken = ""
maxResults = 100
}
//sampleEnd
}