Values.CreateProjectRequestSourceCreates a new Amazon Rekognition project. A project is a group of resources (datasets, model versions) that you use to create and manage a Amazon Rekognition Custom Labels Model or custom adapter. You can specify a feature to create the project with, if no feature is specified then Custom Labels is used by default. For adapters, you can also choose whether or not to have the project auto update by using the AutoUpdate argument. This operation requires permissions to perform the rekognition:CreateProject action.
type nonrec t = {projectName : ProjectName.t;The name of the project to create.
*)feature : CustomizationFeature.t option;Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
*)autoUpdate : ProjectAutoUpdate.t option;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.
*)}val make :
?feature:??? ->
?autoUpdate:??? ->
?tags:??? ->
projectName:ProjectName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of ProjectName.t ])
list ]