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 { DescribeFleetAdvisorSchemaObjectSummaryRequest, DescribeFleetAdvisorSchemaObjectSummaryResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeFleetAdvisorSchemaObjectSummaryCommand}. */ export interface DescribeFleetAdvisorSchemaObjectSummaryCommandInput extends DescribeFleetAdvisorSchemaObjectSummaryRequest { } /** * @public * * The output of {@link DescribeFleetAdvisorSchemaObjectSummaryCommand}. */ export interface DescribeFleetAdvisorSchemaObjectSummaryCommandOutput extends DescribeFleetAdvisorSchemaObjectSummaryResponse, __MetadataBearer { } declare const DescribeFleetAdvisorSchemaObjectSummaryCommand_base: { new (input: DescribeFleetAdvisorSchemaObjectSummaryCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeFleetAdvisorSchemaObjectSummaryCommandInput]): 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. *

*
*

Provides descriptions of the schemas discovered by your Fleet Advisor * collectors.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DatabaseMigrationServiceClient, DescribeFleetAdvisorSchemaObjectSummaryCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import * // const { DatabaseMigrationServiceClient, DescribeFleetAdvisorSchemaObjectSummaryCommand } = 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 = { // DescribeFleetAdvisorSchemaObjectSummaryRequest * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeFleetAdvisorSchemaObjectSummaryCommand(input); * const response = await client.send(command); * // { // DescribeFleetAdvisorSchemaObjectSummaryResponse * // FleetAdvisorSchemaObjects: [ // FleetAdvisorSchemaObjectList * // { // FleetAdvisorSchemaObjectResponse * // SchemaId: "STRING_VALUE", * // ObjectType: "STRING_VALUE", * // NumberOfObjects: Number("long"), * // CodeLineCount: Number("long"), * // CodeSize: Number("long"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeFleetAdvisorSchemaObjectSummaryCommandInput - {@link DescribeFleetAdvisorSchemaObjectSummaryCommandInput} * @returns {@link DescribeFleetAdvisorSchemaObjectSummaryCommandOutput} * @see {@link DescribeFleetAdvisorSchemaObjectSummaryCommandInput} for command's `input` shape. * @see {@link DescribeFleetAdvisorSchemaObjectSummaryCommandOutput} 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 DescribeFleetAdvisorSchemaObjectSummaryCommand extends DescribeFleetAdvisorSchemaObjectSummaryCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeFleetAdvisorSchemaObjectSummaryRequest; output: DescribeFleetAdvisorSchemaObjectSummaryResponse; }; sdk: { input: DescribeFleetAdvisorSchemaObjectSummaryCommandInput; output: DescribeFleetAdvisorSchemaObjectSummaryCommandOutput; }; }; }