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 { DescribeFleetAdvisorDatabasesRequest, DescribeFleetAdvisorDatabasesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeFleetAdvisorDatabasesCommand}. */ export interface DescribeFleetAdvisorDatabasesCommandInput extends DescribeFleetAdvisorDatabasesRequest { } /** * @public * * The output of {@link DescribeFleetAdvisorDatabasesCommand}. */ export interface DescribeFleetAdvisorDatabasesCommandOutput extends DescribeFleetAdvisorDatabasesResponse, __MetadataBearer { } declare const DescribeFleetAdvisorDatabasesCommand_base: { new (input: DescribeFleetAdvisorDatabasesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeFleetAdvisorDatabasesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** * *

* End of support notice: On May 20, 2026, Amazon Web Services will end support for Amazon Web Services DMS Fleet Advisor;. After May 20, 2026, you will no longer be able to access the Amazon Web Services DMS Fleet Advisor; console or Amazon Web Services DMS Fleet Advisor; resources. For more information, see Amazon Web Services DMS Fleet Advisor end of support. *

*
*

Returns a list of Fleet Advisor databases in your account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DatabaseMigrationServiceClient, DescribeFleetAdvisorDatabasesCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import * // const { DatabaseMigrationServiceClient, DescribeFleetAdvisorDatabasesCommand } = 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 = { // DescribeFleetAdvisorDatabasesRequest * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeFleetAdvisorDatabasesCommand(input); * const response = await client.send(command); * // { // DescribeFleetAdvisorDatabasesResponse * // Databases: [ // DatabaseList * // { // DatabaseResponse * // DatabaseId: "STRING_VALUE", * // DatabaseName: "STRING_VALUE", * // IpAddress: "STRING_VALUE", * // NumberOfSchemas: Number("long"), * // Server: { // ServerShortInfoResponse * // ServerId: "STRING_VALUE", * // IpAddress: "STRING_VALUE", * // ServerName: "STRING_VALUE", * // }, * // SoftwareDetails: { // DatabaseInstanceSoftwareDetailsResponse * // Engine: "STRING_VALUE", * // EngineVersion: "STRING_VALUE", * // EngineEdition: "STRING_VALUE", * // ServicePack: "STRING_VALUE", * // SupportLevel: "STRING_VALUE", * // OsArchitecture: Number("int"), * // Tooltip: "STRING_VALUE", * // }, * // Collectors: [ // CollectorsList * // { // CollectorShortInfoResponse * // CollectorReferencedId: "STRING_VALUE", * // CollectorName: "STRING_VALUE", * // }, * // ], * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeFleetAdvisorDatabasesCommandInput - {@link DescribeFleetAdvisorDatabasesCommandInput} * @returns {@link DescribeFleetAdvisorDatabasesCommandOutput} * @see {@link DescribeFleetAdvisorDatabasesCommandInput} for command's `input` shape. * @see {@link DescribeFleetAdvisorDatabasesCommandOutput} for command's `response` shape. * @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape. * * @throws {@link InvalidResourceStateFault} (client fault) *

The resource is in a state that prevents it from being used for database migration.

* * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* * * @public */ export declare class DescribeFleetAdvisorDatabasesCommand extends DescribeFleetAdvisorDatabasesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeFleetAdvisorDatabasesRequest; output: DescribeFleetAdvisorDatabasesResponse; }; sdk: { input: DescribeFleetAdvisorDatabasesCommandInput; output: DescribeFleetAdvisorDatabasesCommandOutput; }; }; }