Skip to main content

dataset_labels

Creates, updates, deletes, gets or lists a dataset_labels resource.

Overview

Namedataset_labels
TypeResource
Idaws.rekognition.dataset_labels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
label_namestringThe name of the label. (pattern: <code>.{1,}</code>)
label_statsobjectStatistics about the label.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_dataset_labelsselectregionThis 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
label_name,
label_stats
FROM aws.rekognition.dataset_labels
WHERE region = '{{ region }}' -- required
;