aws.lookoutvision.list_dataset_entries
Example SQL Queries
SELECT * FROMaws.lookoutvision.list_dataset_entriesWHERE"project_name" = 'VALUE'AND "dataset_type" = 'VALUE';Description
Lists the JSON Lines within a dataset. An Amazon Lookout for Vision JSON Line contains the anomaly information for a single image, including the image location and the assigned label.
This operation requires permissions to perform the lookoutvision:ListDatasetEntries operation.
Table Definition
| Column Name | Column Data Type |
|---|---|
| dataset_type Required Input Column The type of the dataset that you want to list. Specify train to list the training dataset. Specify test to list the test dataset. If you have a single dataset project, specify train. | VARCHAR |
| project_name Required Input Column The name of the project that contains the dataset that you want to list. | VARCHAR |
| after_creation_date Input Column Only includes entries after the specified date in the response. For example, 2020-06-23T00:00:00. | TIMESTAMP_S |
| anomaly_class Input Column Specify normal to include only normal images. Specify anomaly to only include anomalous entries. If you don't specify a value, Amazon Lookout for Vision returns normal and anomalous images. | VARCHAR |
| before_creation_date Input Column Only includes entries before the specified date in the response. For example, 2020-06-23T00:00:00. | TIMESTAMP_S |
| labeled Input Column Specify true to include labeled entries, otherwise specify false. If you don't specify a value, Lookout for Vision returns all entries. | BOOLEAN |
| source_ref_contains Input Column Perform a "contains" search on the values of the source-ref key within the dataset. For example a value of "IMG_17" returns all JSON Lines where the source-ref key value matches *IMG_17*. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| dataset_entries | VARCHAR |