List all the launch profiles a studio.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, ListLaunchProfilesCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, ListLaunchProfilesCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new ListLaunchProfilesCommand(input); const response = await client.send(command);
ListLaunchProfilesCommandInput for command's input shape.
input
ListLaunchProfilesCommandOutput for command's response shape.
response
config for NimbleClient's config shape.
config
List all the launch profiles a studio.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, ListLaunchProfilesCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, ListLaunchProfilesCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new ListLaunchProfilesCommand(input); const response = await client.send(command);
ListLaunchProfilesCommandInput for command's
input
shape.ListLaunchProfilesCommandOutput for command's
response
shape.config for NimbleClient's
config
shape.