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 { DescribeFleetAdvisorSchemasRequest, DescribeFleetAdvisorSchemasResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeFleetAdvisorSchemasCommand}. */ export interface DescribeFleetAdvisorSchemasCommandInput extends DescribeFleetAdvisorSchemasRequest { } /** * @public * * The output of {@link DescribeFleetAdvisorSchemasCommand}. */ export interface DescribeFleetAdvisorSchemasCommandOutput extends DescribeFleetAdvisorSchemasResponse, __MetadataBearer { } declare const DescribeFleetAdvisorSchemasCommand_base: { new (input: DescribeFleetAdvisorSchemasCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeFleetAdvisorSchemasCommandInput]): 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 schemas detected by Fleet Advisor Collectors in your account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DatabaseMigrationServiceClient, DescribeFleetAdvisorSchemasCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import * // const { DatabaseMigrationServiceClient, DescribeFleetAdvisorSchemasCommand } = 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 = { // DescribeFleetAdvisorSchemasRequest * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeFleetAdvisorSchemasCommand(input); * const response = await client.send(command); * // { // DescribeFleetAdvisorSchemasResponse * // FleetAdvisorSchemas: [ // FleetAdvisorSchemaList * // { // SchemaResponse * // CodeLineCount: Number("long"), * // CodeSize: Number("long"), * // Complexity: "STRING_VALUE", * // Server: { // ServerShortInfoResponse * // ServerId: "STRING_VALUE", * // IpAddress: "STRING_VALUE", * // ServerName: "STRING_VALUE", * // }, * // DatabaseInstance: { // DatabaseShortInfoResponse * // DatabaseId: "STRING_VALUE", * // DatabaseName: "STRING_VALUE", * // DatabaseIpAddress: "STRING_VALUE", * // DatabaseEngine: "STRING_VALUE", * // }, * // SchemaId: "STRING_VALUE", * // SchemaName: "STRING_VALUE", * // OriginalSchema: { // SchemaShortInfoResponse * // SchemaId: "STRING_VALUE", * // SchemaName: "STRING_VALUE", * // DatabaseId: "STRING_VALUE", * // DatabaseName: "STRING_VALUE", * // DatabaseIpAddress: "STRING_VALUE", * // }, * // Similarity: Number("double"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeFleetAdvisorSchemasCommandInput - {@link DescribeFleetAdvisorSchemasCommandInput} * @returns {@link DescribeFleetAdvisorSchemasCommandOutput} * @see {@link DescribeFleetAdvisorSchemasCommandInput} for command's `input` shape. * @see {@link DescribeFleetAdvisorSchemasCommandOutput} 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 DescribeFleetAdvisorSchemasCommand extends DescribeFleetAdvisorSchemasCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeFleetAdvisorSchemasRequest; output: DescribeFleetAdvisorSchemasResponse; }; sdk: { input: DescribeFleetAdvisorSchemasCommandInput; output: DescribeFleetAdvisorSchemasCommandOutput; }; }; }