Displays a list of all offerings that are available to this account in the current AWS Region. If you have an active reservation (which means you've purchased an offering that has already started and hasn't expired yet), your account isn't eligible for other offerings.
example
Use a bare-bones client and the command you need to make an API call.
Displays a list of all offerings that are available to this account in the current AWS Region. If you have an active reservation (which means you've purchased an offering that has already started and hasn't expired yet), your account isn't eligible for other offerings.
Use a bare-bones client and the command you need to make an API call.
import { MediaConnectClient, ListOfferingsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import // const { MediaConnectClient, ListOfferingsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import const client = new MediaConnectClient(config); const command = new ListOfferingsCommand(input); const response = await client.send(command);
ListOfferingsCommandInput for command's
input
shape.ListOfferingsCommandOutput for command's
response
shape.config for MediaConnectClient's
config
shape.