@aws-sdk/client-mediapackagev2
TypeScript icon, indicating that this package has built-in type declarations

3.654.0 • Public • Published

@aws-sdk/client-mediapackagev2

Description

AWS SDK for JavaScript MediaPackageV2 Client for Node.js, Browser and React Native.

This guide is intended for creating AWS Elemental MediaPackage resources in MediaPackage Version 2 (v2) starting from May 2023. To get started with MediaPackage v2, create your MediaPackage resources. There isn't an automated process to migrate your resources from MediaPackage v1 to MediaPackage v2.

The names of the entities that you use to access this API, like URLs and ARNs, all have the versioning information added, like "v2", to distinguish from the prior version. If you used MediaPackage prior to this release, you can't use the MediaPackage v2 CLI or the MediaPackage v2 API to access any MediaPackage v1 resources.

If you created resources in MediaPackage v1, use video on demand (VOD) workflows, and aren't looking to migrate to MediaPackage v2 yet, see the MediaPackage v1 Live API Reference.

This is the AWS Elemental MediaPackage v2 Live REST API Reference. It describes all the MediaPackage API operations for live content in detail, and provides sample requests, responses, and errors for the supported web services protocols.

We assume that you have the IAM permissions that you need to use MediaPackage via the REST API. We also assume that you are familiar with the features and operations of MediaPackage, as described in the AWS Elemental MediaPackage User Guide.

Installing

To install the this package, simply type add or install @aws-sdk/client-mediapackagev2 using your favorite package manager:

  • npm install @aws-sdk/client-mediapackagev2
  • yarn add @aws-sdk/client-mediapackagev2
  • pnpm add @aws-sdk/client-mediapackagev2

Getting Started

Import

The AWS SDK is modulized by clients and commands. To send a request, you only need to import the MediaPackageV2Client and the commands you need, for example ListChannelGroupsCommand:

// ES5 example
const { MediaPackageV2Client, ListChannelGroupsCommand } = require("@aws-sdk/client-mediapackagev2");
// ES6+ example
import { MediaPackageV2Client, ListChannelGroupsCommand } from "@aws-sdk/client-mediapackagev2";

Usage

To send a request, you:

  • Initiate client with configuration (e.g. credentials, region).
  • Initiate command with input parameters.
  • Call send operation on client with command object as input.
  • If you are using a custom http handler, you may call destroy() to close open connections.
// a client can be shared by different commands.
const client = new MediaPackageV2Client({ region: "REGION" });

const params = {
  /** input parameters */
};
const command = new ListChannelGroupsCommand(params);

Async/await

We recommend using await operator to wait for the promise returned by send operation as follows:

// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}

Async-await is clean, concise, intuitive, easy to debug and has better error handling as compared to using Promise chains or callbacks.

Promises

You can also use Promise chaining to execute send operation.

client.send(command).then(
  (data) => {
    // process data.
  },
  (error) => {
    // error handling.
  }
);

Promises can also be called using .catch() and .finally() as follows:

client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });

Callbacks

We do not recommend using callbacks because of callback hell, but they are supported by the send operation.

// callbacks.
client.send(command, (err, data) => {
  // process err and data.
});

v2 compatible style

The client can also send requests using v2 compatible style. However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post on modular packages in AWS SDK for JavaScript

import * as AWS from "@aws-sdk/client-mediapackagev2";
const client = new AWS.MediaPackageV2({ region: "REGION" });

// async/await.
try {
  const data = await client.listChannelGroups(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .listChannelGroups(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks.
client.listChannelGroups(params, (err, data) => {
  // process err and data.
});

Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}

Getting Help

Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-mediapackagev2 package is updated. To contribute to client you can check our generate clients scripts.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Client Commands (Operations List)

CreateChannel

Command API Reference / Input / Output

CreateChannelGroup

Command API Reference / Input / Output

CreateOriginEndpoint

Command API Reference / Input / Output

DeleteChannel

Command API Reference / Input / Output

DeleteChannelGroup

Command API Reference / Input / Output

DeleteChannelPolicy

Command API Reference / Input / Output

DeleteOriginEndpoint

Command API Reference / Input / Output

DeleteOriginEndpointPolicy

Command API Reference / Input / Output

GetChannel

Command API Reference / Input / Output

GetChannelGroup

Command API Reference / Input / Output

GetChannelPolicy

Command API Reference / Input / Output

GetOriginEndpoint

Command API Reference / Input / Output

GetOriginEndpointPolicy

Command API Reference / Input / Output

ListChannelGroups

Command API Reference / Input / Output

ListChannels

Command API Reference / Input / Output

ListOriginEndpoints

Command API Reference / Input / Output

ListTagsForResource

Command API Reference / Input / Output

PutChannelPolicy

Command API Reference / Input / Output

PutOriginEndpointPolicy

Command API Reference / Input / Output

TagResource

Command API Reference / Input / Output

UntagResource

Command API Reference / Input / Output

UpdateChannel

Command API Reference / Input / Output

UpdateChannelGroup

Command API Reference / Input / Output

UpdateOriginEndpoint

Command API Reference / Input / Output

Readme

Keywords

none

Package Sidebar

Install

npm i @aws-sdk/client-mediapackagev2

Weekly Downloads

360

Version

3.654.0

License

Apache-2.0

Unpacked Size

691 kB

Total Files

155

Last publish

Collaborators

  • mattsb42-aws
  • kuhe
  • amzn-oss
  • aws-sdk-bot
  • trivikr-aws