Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
Use a bare-bones client and the command you need to make an API call.
import { MediaConnectClient, DescribeOfferingCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import // const { MediaConnectClient, DescribeOfferingCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import const client = new MediaConnectClient(config); const command = new DescribeOfferingCommand(input); const response = await client.send(command);
DescribeOfferingCommandInput for command's input shape.
input
DescribeOfferingCommandOutput for command's response shape.
response
config for MediaConnectClient's config shape.
config
Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
Use a bare-bones client and the command you need to make an API call.
import { MediaConnectClient, DescribeOfferingCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import // const { MediaConnectClient, DescribeOfferingCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import const client = new MediaConnectClient(config); const command = new DescribeOfferingCommand(input); const response = await client.send(command);
DescribeOfferingCommandInput for command's
input
shape.DescribeOfferingCommandOutput for command's
response
shape.config for MediaConnectClient's
config
shape.