Returns the details about one launch. You must already know the launch name. To retrieve a list of launches in your account, use ListLaunches.
Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, GetLaunchCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, GetLaunchCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(config); const command = new GetLaunchCommand(input); const response = await client.send(command);
GetLaunchCommandInput for command's input shape.
input
GetLaunchCommandOutput for command's response shape.
response
config for EvidentlyClient's config shape.
config
Returns the details about one launch. You must already know the launch name. To retrieve a list of launches in your account, use ListLaunches.
Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, GetLaunchCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, GetLaunchCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(config); const command = new GetLaunchCommand(input); const response = await client.send(command);
GetLaunchCommandInput for command's
input
shape.GetLaunchCommandOutput for command's
response
shape.config for EvidentlyClient's
config
shape.