Permanently delete a launch profile.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, DeleteLaunchProfileCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, DeleteLaunchProfileCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new DeleteLaunchProfileCommand(input); const response = await client.send(command);
DeleteLaunchProfileCommandInput for command's input shape.
input
DeleteLaunchProfileCommandOutput for command's response shape.
response
config for NimbleClient's config shape.
config
Permanently delete a launch profile.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, DeleteLaunchProfileCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, DeleteLaunchProfileCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new DeleteLaunchProfileCommand(input); const response = await client.send(command);
DeleteLaunchProfileCommandInput for command's
input
shape.DeleteLaunchProfileCommandOutput for command's
response
shape.config for NimbleClient's
config
shape.