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

3.556.0 • Public • Published

@aws-sdk/client-mediaconnect

Description

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

API for AWS Elemental MediaConnect

Installing

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

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

Getting Started

Import

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

// ES5 example
const { MediaConnectClient, ListBridgesCommand } = require("@aws-sdk/client-mediaconnect");
// ES6+ example
import { MediaConnectClient, ListBridgesCommand } from "@aws-sdk/client-mediaconnect";

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 MediaConnectClient({ region: "REGION" });

const params = {
  /** input parameters */
};
const command = new ListBridgesCommand(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-mediaconnect";
const client = new AWS.MediaConnect({ region: "REGION" });

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

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

// callbacks.
client.listBridges(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-mediaconnect 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)

AddBridgeOutputs

Command API Reference / Input / Output

AddBridgeSources

Command API Reference / Input / Output

AddFlowMediaStreams

Command API Reference / Input / Output

AddFlowOutputs

Command API Reference / Input / Output

AddFlowSources

Command API Reference / Input / Output

AddFlowVpcInterfaces

Command API Reference / Input / Output

CreateBridge

Command API Reference / Input / Output

CreateFlow

Command API Reference / Input / Output

CreateGateway

Command API Reference / Input / Output

DeleteBridge

Command API Reference / Input / Output

DeleteFlow

Command API Reference / Input / Output

DeleteGateway

Command API Reference / Input / Output

DeregisterGatewayInstance

Command API Reference / Input / Output

DescribeBridge

Command API Reference / Input / Output

DescribeFlow

Command API Reference / Input / Output

DescribeFlowSourceMetadata

Command API Reference / Input / Output

DescribeGateway

Command API Reference / Input / Output

DescribeGatewayInstance

Command API Reference / Input / Output

DescribeOffering

Command API Reference / Input / Output

DescribeReservation

Command API Reference / Input / Output

GrantFlowEntitlements

Command API Reference / Input / Output

ListBridges

Command API Reference / Input / Output

ListEntitlements

Command API Reference / Input / Output

ListFlows

Command API Reference / Input / Output

ListGatewayInstances

Command API Reference / Input / Output

ListGateways

Command API Reference / Input / Output

ListOfferings

Command API Reference / Input / Output

ListReservations

Command API Reference / Input / Output

ListTagsForResource

Command API Reference / Input / Output

PurchaseOffering

Command API Reference / Input / Output

RemoveBridgeOutput

Command API Reference / Input / Output

RemoveBridgeSource

Command API Reference / Input / Output

RemoveFlowMediaStream

Command API Reference / Input / Output

RemoveFlowOutput

Command API Reference / Input / Output

RemoveFlowSource

Command API Reference / Input / Output

RemoveFlowVpcInterface

Command API Reference / Input / Output

RevokeFlowEntitlement

Command API Reference / Input / Output

StartFlow

Command API Reference / Input / Output

StopFlow

Command API Reference / Input / Output

TagResource

Command API Reference / Input / Output

UntagResource

Command API Reference / Input / Output

UpdateBridge

Command API Reference / Input / Output

UpdateBridgeOutput

Command API Reference / Input / Output

UpdateBridgeSource

Command API Reference / Input / Output

UpdateBridgeState

Command API Reference / Input / Output

UpdateFlow

Command API Reference / Input / Output

UpdateFlowEntitlement

Command API Reference / Input / Output

UpdateFlowMediaStream

Command API Reference / Input / Output

UpdateFlowOutput

Command API Reference / Input / Output

UpdateFlowSource

Command API Reference / Input / Output

UpdateGatewayInstance

Command API Reference / Input / Output

Readme

Keywords

none

Package Sidebar

Install

npm i @aws-sdk/client-mediaconnect

Weekly Downloads

81,905

Version

3.556.0

License

Apache-2.0

Unpacked Size

1.19 MB

Total Files

260

Last publish

Collaborators

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