import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CertificateMessage, DescribeCertificatesMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeCertificatesCommand}. */ export interface DescribeCertificatesCommandInput extends DescribeCertificatesMessage { } /** * @public * * The output of {@link DescribeCertificatesCommand}. */ export interface DescribeCertificatesCommandOutput extends CertificateMessage, __MetadataBearer { } declare const DescribeCertificatesCommand_base: { new (input: DescribeCertificatesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeCertificatesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of certificate authority (CA) certificates provided by Amazon DocumentDB for this Amazon Web Services account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DocDBClient, DescribeCertificatesCommand } from "@aws-sdk/client-docdb"; // ES Modules import * // const { DocDBClient, DescribeCertificatesCommand } = require("@aws-sdk/client-docdb"); // CommonJS import * // import type { DocDBClientConfig } from "@aws-sdk/client-docdb"; * const config = {}; // type is DocDBClientConfig * const client = new DocDBClient(config); * const input = { // DescribeCertificatesMessage * CertificateIdentifier: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeCertificatesCommand(input); * const response = await client.send(command); * // { // CertificateMessage * // Certificates: [ // CertificateList * // { // Certificate * // CertificateIdentifier: "STRING_VALUE", * // CertificateType: "STRING_VALUE", * // Thumbprint: "STRING_VALUE", * // ValidFrom: new Date("TIMESTAMP"), * // ValidTill: new Date("TIMESTAMP"), * // CertificateArn: "STRING_VALUE", * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeCertificatesCommandInput - {@link DescribeCertificatesCommandInput} * @returns {@link DescribeCertificatesCommandOutput} * @see {@link DescribeCertificatesCommandInput} for command's `input` shape. * @see {@link DescribeCertificatesCommandOutput} for command's `response` shape. * @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape. * * @throws {@link CertificateNotFoundFault} (client fault) *

* CertificateIdentifier doesn't refer to an existing certificate.

* * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* * * @public */ export declare class DescribeCertificatesCommand extends DescribeCertificatesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeCertificatesMessage; output: CertificateMessage; }; sdk: { input: DescribeCertificatesCommandInput; output: DescribeCertificatesCommandOutput; }; }; }