import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetTrustStoreRequest, GetTrustStoreResult } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetTrustStoreCommand}. */ export interface GetTrustStoreCommandInput extends GetTrustStoreRequest { } /** * @public * * The output of {@link GetTrustStoreCommand}. */ export interface GetTrustStoreCommandOutput extends GetTrustStoreResult, __MetadataBearer { } declare const GetTrustStoreCommand_base: { new (input: GetTrustStoreCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetTrustStoreCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets a trust store.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, GetTrustStoreCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, GetTrustStoreCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * // import type { CloudFrontClientConfig } from "@aws-sdk/client-cloudfront"; * const config = {}; // type is CloudFrontClientConfig * const client = new CloudFrontClient(config); * const input = { // GetTrustStoreRequest * Identifier: "STRING_VALUE", // required * }; * const command = new GetTrustStoreCommand(input); * const response = await client.send(command); * // { // GetTrustStoreResult * // TrustStore: { // TrustStore * // Id: "STRING_VALUE", * // Arn: "STRING_VALUE", * // Name: "STRING_VALUE", * // Status: "pending" || "active" || "failed", * // NumberOfCaCertificates: Number("int"), * // LastModifiedTime: new Date("TIMESTAMP"), * // Reason: "STRING_VALUE", * // UseClientCertificateOCSPEndpoint: true || false, * // }, * // ETag: "STRING_VALUE", * // }; * * ``` * * @param GetTrustStoreCommandInput - {@link GetTrustStoreCommandInput} * @returns {@link GetTrustStoreCommandOutput} * @see {@link GetTrustStoreCommandInput} for command's `input` shape. * @see {@link GetTrustStoreCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

The entity was not found.

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

An argument is invalid.

* * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* * * @public */ export declare class GetTrustStoreCommand extends GetTrustStoreCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetTrustStoreRequest; output: GetTrustStoreResult; }; sdk: { input: GetTrustStoreCommandInput; output: GetTrustStoreCommandOutput; }; }; }