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

Returns information about replication instances for your account in the current * region.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DatabaseMigrationServiceClient, DescribeReplicationInstancesCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import * // const { DatabaseMigrationServiceClient, DescribeReplicationInstancesCommand } = 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 = { // DescribeReplicationInstancesMessage * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeReplicationInstancesCommand(input); * const response = await client.send(command); * // { // DescribeReplicationInstancesResponse * // Marker: "STRING_VALUE", * // ReplicationInstances: [ // ReplicationInstanceList * // { // ReplicationInstance * // ReplicationInstanceIdentifier: "STRING_VALUE", * // ReplicationInstanceClass: "STRING_VALUE", * // ReplicationInstanceStatus: "STRING_VALUE", * // AllocatedStorage: Number("int"), * // InstanceCreateTime: new Date("TIMESTAMP"), * // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList * // { // VpcSecurityGroupMembership * // VpcSecurityGroupId: "STRING_VALUE", * // Status: "STRING_VALUE", * // }, * // ], * // AvailabilityZone: "STRING_VALUE", * // ReplicationSubnetGroup: { // ReplicationSubnetGroup * // ReplicationSubnetGroupIdentifier: "STRING_VALUE", * // ReplicationSubnetGroupDescription: "STRING_VALUE", * // VpcId: "STRING_VALUE", * // SubnetGroupStatus: "STRING_VALUE", * // Subnets: [ // SubnetList * // { // Subnet * // SubnetIdentifier: "STRING_VALUE", * // SubnetAvailabilityZone: { // AvailabilityZone * // Name: "STRING_VALUE", * // }, * // SubnetStatus: "STRING_VALUE", * // }, * // ], * // SupportedNetworkTypes: [ // StringList * // "STRING_VALUE", * // ], * // IsReadOnly: true || false, * // }, * // PreferredMaintenanceWindow: "STRING_VALUE", * // PendingModifiedValues: { // ReplicationPendingModifiedValues * // ReplicationInstanceClass: "STRING_VALUE", * // AllocatedStorage: Number("int"), * // MultiAZ: true || false, * // EngineVersion: "STRING_VALUE", * // NetworkType: "STRING_VALUE", * // }, * // MultiAZ: true || false, * // EngineVersion: "STRING_VALUE", * // AutoMinorVersionUpgrade: true || false, * // KmsKeyId: "STRING_VALUE", * // ReplicationInstanceArn: "STRING_VALUE", * // ReplicationInstancePublicIpAddress: "STRING_VALUE", * // ReplicationInstancePrivateIpAddress: "STRING_VALUE", * // ReplicationInstancePublicIpAddresses: [ // ReplicationInstancePublicIpAddressList * // "STRING_VALUE", * // ], * // ReplicationInstancePrivateIpAddresses: [ // ReplicationInstancePrivateIpAddressList * // "STRING_VALUE", * // ], * // ReplicationInstanceIpv6Addresses: [ // ReplicationInstanceIpv6AddressList * // "STRING_VALUE", * // ], * // PubliclyAccessible: true || false, * // SecondaryAvailabilityZone: "STRING_VALUE", * // FreeUntil: new Date("TIMESTAMP"), * // DnsNameServers: "STRING_VALUE", * // NetworkType: "STRING_VALUE", * // KerberosAuthenticationSettings: { // KerberosAuthenticationSettings * // KeyCacheSecretId: "STRING_VALUE", * // KeyCacheSecretIamArn: "STRING_VALUE", * // Krb5FileContents: "STRING_VALUE", * // }, * // }, * // ], * // }; * * ``` * * @param DescribeReplicationInstancesCommandInput - {@link DescribeReplicationInstancesCommandInput} * @returns {@link DescribeReplicationInstancesCommandOutput} * @see {@link DescribeReplicationInstancesCommandInput} for command's `input` shape. * @see {@link DescribeReplicationInstancesCommandOutput} 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 replication instances * ```javascript * // Returns the status of the refresh-schemas operation. * const input = { * Filters: [ * { * Name: "string", * Values: [ * "string", * "string" * ] * } * ], * Marker: "", * MaxRecords: 123 * }; * const command = new DescribeReplicationInstancesCommand(input); * const response = await client.send(command); * /* response is * { * Marker: "", * ReplicationInstances: [] * } * *\/ * ``` * * @public */ export declare class DescribeReplicationInstancesCommand extends DescribeReplicationInstancesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeReplicationInstancesMessage; output: DescribeReplicationInstancesResponse; }; sdk: { input: DescribeReplicationInstancesCommandInput; output: DescribeReplicationInstancesCommandOutput; }; }; }