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 { DescribeMetadataModelCreationsMessage, DescribeMetadataModelCreationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeMetadataModelCreationsCommand}. */ export interface DescribeMetadataModelCreationsCommandInput extends DescribeMetadataModelCreationsMessage { } /** * @public * * The output of {@link DescribeMetadataModelCreationsCommand}. */ export interface DescribeMetadataModelCreationsCommandOutput extends DescribeMetadataModelCreationsResponse, __MetadataBearer { } declare const DescribeMetadataModelCreationsCommand_base: { new (input: DescribeMetadataModelCreationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeMetadataModelCreationsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns a paginated list of metadata model creation requests for a migration project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DatabaseMigrationServiceClient, DescribeMetadataModelCreationsCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import * // const { DatabaseMigrationServiceClient, DescribeMetadataModelCreationsCommand } = 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 = { // DescribeMetadataModelCreationsMessage * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * Marker: "STRING_VALUE", * MaxRecords: Number("int"), * MigrationProjectIdentifier: "STRING_VALUE", // required * }; * const command = new DescribeMetadataModelCreationsCommand(input); * const response = await client.send(command); * // { // DescribeMetadataModelCreationsResponse * // Marker: "STRING_VALUE", * // Requests: [ // SchemaConversionRequestList * // { // SchemaConversionRequest * // Status: "STRING_VALUE", * // RequestIdentifier: "STRING_VALUE", * // MigrationProjectArn: "STRING_VALUE", * // Error: { // ErrorDetails Union: only one key present * // defaultErrorDetails: { // DefaultErrorDetails * // Message: "STRING_VALUE", * // }, * // }, * // ExportSqlDetails: { // ExportSqlDetails * // S3ObjectKey: "STRING_VALUE", * // ObjectURL: "STRING_VALUE", * // }, * // Progress: { // Progress * // ProgressPercent: Number("double"), * // TotalObjects: Number("long"), * // ProgressStep: "STRING_VALUE", * // ProcessedObject: { // ProcessedObject * // Name: "STRING_VALUE", * // Type: "STRING_VALUE", * // EndpointType: "STRING_VALUE", * // }, * // }, * // }, * // ], * // }; * * ``` * * @param DescribeMetadataModelCreationsCommandInput - {@link DescribeMetadataModelCreationsCommandInput} * @returns {@link DescribeMetadataModelCreationsCommandOutput} * @see {@link DescribeMetadataModelCreationsCommandInput} for command's `input` shape. * @see {@link DescribeMetadataModelCreationsCommandOutput} for command's `response` shape. * @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape. * * @throws {@link AccessDeniedFault} (client fault) *

DMS was denied access to the endpoint. Check that the * role is correctly configured.

* * @throws {@link ResourceNotFoundFault} (client fault) *

The resource could not be found.

* * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* * * @public */ export declare class DescribeMetadataModelCreationsCommand extends DescribeMetadataModelCreationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeMetadataModelCreationsMessage; output: DescribeMetadataModelCreationsResponse; }; sdk: { input: DescribeMetadataModelCreationsCommandInput; output: DescribeMetadataModelCreationsCommandOutput; }; }; }