Jump to Content

New API Documentation - Developer Preview Available

We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.

Class DeleteProgramCommandProtected

Deletes a program within a channel. For information about programs, see Working with programs in the MediaTailor User Guide.

Example

Use a bare-bones client and the command you need to make an API call.

import { MediaTailorClient, DeleteProgramCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
// const { MediaTailorClient, DeleteProgramCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
const client = new MediaTailorClient(config);
const input = { // DeleteProgramRequest
ChannelName: "STRING_VALUE", // required
ProgramName: "STRING_VALUE", // required
};
const command = new DeleteProgramCommand(input);
const response = await client.send(command);
// {};

Param

DeleteProgramCommandInput

Returns

DeleteProgramCommandOutput

See

Throws

MediaTailorServiceException

Base exception class for all service exceptions from MediaTailor service.

Hierarchy

Constructors

Properties

middlewareStack: MiddlewareStack<DeleteProgramCommandInput, DeleteProgramCommandOutput>

Methods