Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth).
example
Use a bare-bones client and the command you need to make an API call.
Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth).
Use a bare-bones client and the command you need to make an API call.
import { MediaConnectClient, DescribeReservationCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import // const { MediaConnectClient, DescribeReservationCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import const client = new MediaConnectClient(config); const command = new DescribeReservationCommand(input); const response = await client.send(command);
DescribeReservationCommandInput for command's
input
shape.DescribeReservationCommandOutput for command's
response
shape.config for MediaConnectClient's
config
shape.