Class: Aws::Rekognition::Types::CreateDatasetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::CreateDatasetRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_source ⇒ Types::DatasetSource
The source files for the dataset.
-
#dataset_type ⇒ String
The type of the dataset.
-
#project_arn ⇒ String
The ARN of the Amazon Rekognition Custom Labels project to which you want to asssign the dataset.
-
#tags ⇒ Hash<String,String>
A set of tags (key-value pairs) that you want to attach to the dataset.
Instance Attribute Details
#dataset_source ⇒ Types::DatasetSource
The source files for the dataset. You can specify the ARN of an existing dataset or specify the Amazon S3 bucket location of an Amazon Sagemaker format manifest file. If you don’t specify ‘datasetSource`, an empty dataset is created. To add labeled images to the dataset, You can use the console or call UpdateDatasetEntries.
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-rekognition/types.rb', line 911 class CreateDatasetRequest < Struct.new( :dataset_source, :dataset_type, :project_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#dataset_type ⇒ String
The type of the dataset. Specify ‘TRAIN` to create a training dataset. Specify `TEST` to create a test dataset.
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-rekognition/types.rb', line 911 class CreateDatasetRequest < Struct.new( :dataset_source, :dataset_type, :project_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#project_arn ⇒ String
The ARN of the Amazon Rekognition Custom Labels project to which you want to asssign the dataset.
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-rekognition/types.rb', line 911 class CreateDatasetRequest < Struct.new( :dataset_source, :dataset_type, :project_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A set of tags (key-value pairs) that you want to attach to the dataset.
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-rekognition/types.rb', line 911 class CreateDatasetRequest < Struct.new( :dataset_source, :dataset_type, :project_arn, :tags) SENSITIVE = [] include Aws::Structure end |