Creates an empty Amazon Lookout for Vision project. After you create the project, add a dataset by calling CreateDataset.
This operation requires permissions to perform the lookoutvision:CreateProject operation.
lookoutvision:CreateProject
Use a bare-bones client and the command you need to make an API call.
import { LookoutVisionClient, CreateProjectCommand } from "@aws-sdk/client-lookoutvision"; // ES Modules import // const { LookoutVisionClient, CreateProjectCommand } = require("@aws-sdk/client-lookoutvision"); // CommonJS import const client = new LookoutVisionClient(config); const command = new CreateProjectCommand(input); const response = await client.send(command);
CreateProjectCommandInput for command's input shape.
input
CreateProjectCommandOutput for command's response shape.
response
config for LookoutVisionClient's config shape.
config
Creates an empty Amazon Lookout for Vision project. After you create the project, add a dataset by calling CreateDataset.
This operation requires permissions to perform the
lookoutvision:CreateProject
operation.Use a bare-bones client and the command you need to make an API call.
import { LookoutVisionClient, CreateProjectCommand } from "@aws-sdk/client-lookoutvision"; // ES Modules import // const { LookoutVisionClient, CreateProjectCommand } = require("@aws-sdk/client-lookoutvision"); // CommonJS import const client = new LookoutVisionClient(config); const command = new CreateProjectCommand(input); const response = await client.send(command);
CreateProjectCommandInput for command's
input
shape.CreateProjectCommandOutput for command's
response
shape.config for LookoutVisionClient's
config
shape.