import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client"; import type { GetTrustStoreRevocationContentInput, GetTrustStoreRevocationContentOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetTrustStoreRevocationContentCommand}. */ export interface GetTrustStoreRevocationContentCommandInput extends GetTrustStoreRevocationContentInput { } /** * @public * * The output of {@link GetTrustStoreRevocationContentCommand}. */ export interface GetTrustStoreRevocationContentCommandOutput extends GetTrustStoreRevocationContentOutput, __MetadataBearer { } declare const GetTrustStoreRevocationContentCommand_base: { new (input: GetTrustStoreRevocationContentCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetTrustStoreRevocationContentCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves the specified revocation file.

*

This action returns a pre-signed S3 URI which is * active for ten minutes.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ElasticLoadBalancingV2Client, GetTrustStoreRevocationContentCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import * // const { ElasticLoadBalancingV2Client, GetTrustStoreRevocationContentCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import * // import type { ElasticLoadBalancingV2ClientConfig } from "@aws-sdk/client-elastic-load-balancing-v2"; * const config = {}; // type is ElasticLoadBalancingV2ClientConfig * const client = new ElasticLoadBalancingV2Client(config); * const input = { // GetTrustStoreRevocationContentInput * TrustStoreArn: "STRING_VALUE", // required * RevocationId: Number("long"), // required * }; * const command = new GetTrustStoreRevocationContentCommand(input); * const response = await client.send(command); * // { // GetTrustStoreRevocationContentOutput * // Location: "STRING_VALUE", * // }; * * ``` * * @param GetTrustStoreRevocationContentCommandInput - {@link GetTrustStoreRevocationContentCommandInput} * @returns {@link GetTrustStoreRevocationContentCommandOutput} * @see {@link GetTrustStoreRevocationContentCommandInput} for command's `input` shape. * @see {@link GetTrustStoreRevocationContentCommandOutput} for command's `response` shape. * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape. * * @throws {@link RevocationIdNotFoundException} (client fault) *

The specified revocation ID does not exist.

* * @throws {@link TrustStoreNotFoundException} (client fault) *

The specified trust store does not exist.

* * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* * * @public */ export declare class GetTrustStoreRevocationContentCommand extends GetTrustStoreRevocationContentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetTrustStoreRevocationContentInput; output: GetTrustStoreRevocationContentOutput; }; sdk: { input: GetTrustStoreRevocationContentCommandInput; output: GetTrustStoreRevocationContentCommandOutput; }; }; }