import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient"; import type { DescribeCertificatesMessage, DescribeCertificatesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeCertificatesCommand}. */ export interface DescribeCertificatesCommandInput extends DescribeCertificatesMessage { } /** * @public * * The output of {@link DescribeCertificatesCommand}. */ export interface DescribeCertificatesCommandOutput extends DescribeCertificatesResponse, __MetadataBearer { } declare const DescribeCertificatesCommand_base: { new (input: DescribeCertificatesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeCertificatesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Provides a description of the certificate.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DatabaseMigrationServiceClient, DescribeCertificatesCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import * // const { DatabaseMigrationServiceClient, DescribeCertificatesCommand } = require("@aws-sdk/client-database-migration-service"); // CommonJS import * // import type { DatabaseMigrationServiceClientConfig } from "@aws-sdk/client-database-migration-service"; * const config = {}; // type is DatabaseMigrationServiceClientConfig * const client = new DatabaseMigrationServiceClient(config); * const input = { // DescribeCertificatesMessage * 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); * // { // DescribeCertificatesResponse * // Marker: "STRING_VALUE", * // Certificates: [ // CertificateList * // { // Certificate * // CertificateIdentifier: "STRING_VALUE", * // CertificateCreationDate: new Date("TIMESTAMP"), * // CertificatePem: "STRING_VALUE", * // CertificateWallet: new Uint8Array(), * // CertificateArn: "STRING_VALUE", * // CertificateOwner: "STRING_VALUE", * // ValidFromDate: new Date("TIMESTAMP"), * // ValidToDate: new Date("TIMESTAMP"), * // SigningAlgorithm: "STRING_VALUE", * // KeyLength: Number("int"), * // KmsKeyId: "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 DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape. * * @throws {@link ResourceNotFoundFault} (client fault) *

The resource could not be found.

* * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* * * @example Describe certificates * ```javascript * // Provides a description of the certificate. * const input = { * Filters: [ * { * Name: "string", * Values: [ * "string", * "string" * ] * } * ], * Marker: "", * MaxRecords: 123 * }; * const command = new DescribeCertificatesCommand(input); * const response = await client.send(command); * /* response is * { * Certificates: [], * Marker: "" * } * *\/ * ``` * * @public */ export declare class DescribeCertificatesCommand extends DescribeCertificatesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeCertificatesMessage; output: DescribeCertificatesResponse; }; sdk: { input: DescribeCertificatesCommandInput; output: DescribeCertificatesCommandOutput; }; }; }