import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeInboundIntegrationsMessage, InboundIntegrationsMessage } from "../models/models_0"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeInboundIntegrationsCommand}. */ export interface DescribeInboundIntegrationsCommandInput extends DescribeInboundIntegrationsMessage { } /** * @public * * The output of {@link DescribeInboundIntegrationsCommand}. */ export interface DescribeInboundIntegrationsCommandOutput extends InboundIntegrationsMessage, __MetadataBearer { } declare const DescribeInboundIntegrationsCommand_base: { new (input: DescribeInboundIntegrationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeInboundIntegrationsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns a list of inbound integrations.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DescribeInboundIntegrationsCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DescribeInboundIntegrationsCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // DescribeInboundIntegrationsMessage * IntegrationArn: "STRING_VALUE", * TargetArn: "STRING_VALUE", * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeInboundIntegrationsCommand(input); * const response = await client.send(command); * // { // InboundIntegrationsMessage * // Marker: "STRING_VALUE", * // InboundIntegrations: [ // InboundIntegrationList * // { // InboundIntegration * // IntegrationArn: "STRING_VALUE", * // SourceArn: "STRING_VALUE", * // TargetArn: "STRING_VALUE", * // Status: "creating" || "active" || "modifying" || "failed" || "deleting" || "syncing" || "needs_attention", * // Errors: [ // IntegrationErrorList * // { // IntegrationError * // ErrorCode: "STRING_VALUE", // required * // ErrorMessage: "STRING_VALUE", * // }, * // ], * // CreateTime: new Date("TIMESTAMP"), * // }, * // ], * // }; * * ``` * * @param DescribeInboundIntegrationsCommandInput - {@link DescribeInboundIntegrationsCommandInput} * @returns {@link DescribeInboundIntegrationsCommandOutput} * @see {@link DescribeInboundIntegrationsCommandInput} for command's `input` shape. * @see {@link DescribeInboundIntegrationsCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link IntegrationNotFoundFault} (client fault) *

The integration can't be found.

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

The namespace isn't valid because the namespace doesn't exist. Provide a valid namespace.

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

The requested operation isn't supported.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DescribeInboundIntegrationsCommand extends DescribeInboundIntegrationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeInboundIntegrationsMessage; output: InboundIntegrationsMessage; }; sdk: { input: DescribeInboundIntegrationsCommandInput; output: DescribeInboundIntegrationsCommandOutput; }; }; }