Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class DescribeVodSourceCommandProtected

Provides details about a specific video on demand (VOD) source in a specific source location.

Example

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

import { MediaTailorClient, DescribeVodSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
// const { MediaTailorClient, DescribeVodSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
const client = new MediaTailorClient(config);
const input = { // DescribeVodSourceRequest
SourceLocationName: "STRING_VALUE", // required
VodSourceName: "STRING_VALUE", // required
};
const command = new DescribeVodSourceCommand(input);
const response = await client.send(command);
// { // DescribeVodSourceResponse
// Arn: "STRING_VALUE",
// CreationTime: new Date("TIMESTAMP"),
// HttpPackageConfigurations: [ // HttpPackageConfigurations
// { // HttpPackageConfiguration
// Path: "STRING_VALUE", // required
// SourceGroup: "STRING_VALUE", // required
// Type: "DASH" || "HLS", // required
// },
// ],
// LastModifiedTime: new Date("TIMESTAMP"),
// SourceLocationName: "STRING_VALUE",
// Tags: { // __mapOf__string
// "<keys>": "STRING_VALUE",
// },
// VodSourceName: "STRING_VALUE",
// };

Param

DescribeVodSourceCommandInput

Returns

DescribeVodSourceCommandOutput

See

Throws

MediaTailorServiceException

Base exception class for all service exceptions from MediaTailor service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods