createProject

Creates 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.

Samples


fun main() { 
   //sampleStart 
   // Creates an Amazon Rekognition Custom Labels project.
val resp = rekognitionClient.createProject {
    projectName = "my-project"
} 
   //sampleEnd
}