Class: Aws::Rekognition::Types::CreateProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::CreateProjectRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_update ⇒ String
Specifies whether automatic retraining should be attempted for the versions of the project.
-
#feature ⇒ String
Specifies feature that is being customized.
-
#project_name ⇒ String
The name of the project to create.
-
#tags ⇒ Hash<String,String>
A set of tags (key-value pairs) that you want to attach to the project.
Instance Attribute Details
#auto_update ⇒ String
Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.
1020 1021 1022 1023 1024 1025 1026 1027 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1020 class CreateProjectRequest < Struct.new( :project_name, :feature, :auto_update, :tags) SENSITIVE = [] include Aws::Structure end |
#feature ⇒ String
Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
1020 1021 1022 1023 1024 1025 1026 1027 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1020 class CreateProjectRequest < Struct.new( :project_name, :feature, :auto_update, :tags) SENSITIVE = [] include Aws::Structure end |
#project_name ⇒ String
The name of the project to create.
1020 1021 1022 1023 1024 1025 1026 1027 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1020 class CreateProjectRequest < Struct.new( :project_name, :feature, :auto_update, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A set of tags (key-value pairs) that you want to attach to the project.
1020 1021 1022 1023 1024 1025 1026 1027 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1020 class CreateProjectRequest < Struct.new( :project_name, :feature, :auto_update, :tags) SENSITIVE = [] include Aws::Structure end |