Creates a project, which is the logical object in Evidently that can contain features, launches, and experiments. Use projects to group similar features together.
To update an existing project, use UpdateProject.
Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, CreateProjectCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, CreateProjectCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(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 EvidentlyClient's config shape.
config
Creates a project, which is the logical object in Evidently that can contain features, launches, and experiments. Use projects to group similar features together.
To update an existing project, use UpdateProject.
Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, CreateProjectCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, CreateProjectCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(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 EvidentlyClient's
config
shape.