import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; import type { DescribeHarvestJobRequest, DescribeHarvestJobResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeHarvestJobCommand}. */ export interface DescribeHarvestJobCommandInput extends DescribeHarvestJobRequest { } /** * @public * * The output of {@link DescribeHarvestJobCommand}. */ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobResponse, __MetadataBearer { } declare const DescribeHarvestJobCommand_base: { new (input: DescribeHarvestJobCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeHarvestJobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Gets details about an existing HarvestJob. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MediaPackageClient, DescribeHarvestJobCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import * // const { MediaPackageClient, DescribeHarvestJobCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import * // import type { MediaPackageClientConfig } from "@aws-sdk/client-mediapackage"; * const config = {}; // type is MediaPackageClientConfig * const client = new MediaPackageClient(config); * const input = { // DescribeHarvestJobRequest * Id: "STRING_VALUE", // required * }; * const command = new DescribeHarvestJobCommand(input); * const response = await client.send(command); * // { // DescribeHarvestJobResponse * // Arn: "STRING_VALUE", * // ChannelId: "STRING_VALUE", * // CreatedAt: "STRING_VALUE", * // EndTime: "STRING_VALUE", * // Id: "STRING_VALUE", * // OriginEndpointId: "STRING_VALUE", * // S3Destination: { // S3Destination * // BucketName: "STRING_VALUE", // required * // ManifestKey: "STRING_VALUE", // required * // RoleArn: "STRING_VALUE", // required * // }, * // StartTime: "STRING_VALUE", * // Status: "IN_PROGRESS" || "SUCCEEDED" || "FAILED", * // }; * * ``` * * @param DescribeHarvestJobCommandInput - {@link DescribeHarvestJobCommandInput} * @returns {@link DescribeHarvestJobCommandOutput} * @see {@link DescribeHarvestJobCommandInput} for command's `input` shape. * @see {@link DescribeHarvestJobCommandOutput} for command's `response` shape. * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape. * * @throws {@link ForbiddenException} (client fault) * The client is not authorized to access the requested resource. * * @throws {@link InternalServerErrorException} (server fault) * An unexpected error occurred. * * @throws {@link NotFoundException} (client fault) * The requested resource does not exist. * * @throws {@link ServiceUnavailableException} (server fault) * An unexpected error occurred. * * @throws {@link TooManyRequestsException} (client fault) * The client has exceeded their resource or throttling limits. * * @throws {@link UnprocessableEntityException} (client fault) * The parameters sent in the request are not valid. * * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* * * @public */ export declare class DescribeHarvestJobCommand extends DescribeHarvestJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeHarvestJobRequest; output: DescribeHarvestJobResponse; }; sdk: { input: DescribeHarvestJobCommandInput; output: DescribeHarvestJobCommandOutput; }; }; }