dataset_labels
Creates, updates, deletes, gets or lists a dataset_labels resource.
Overview
| Name | dataset_labels |
| Type | Resource |
| Id | aws.rekognition.dataset_labels |
Fields
The following fields are returned by SELECT queries:
- list_dataset_labels
| Name | Datatype | Description |
|---|---|---|
label_name | string | The name of the label. (pattern: <code>.{1,}</code>) |
label_stats | object | Statistics about the label. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_dataset_labels | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_dataset_labels
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
;