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

Lists the Amazon Redshift IAM Identity Center applications.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DescribeRedshiftIdcApplicationsCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DescribeRedshiftIdcApplicationsCommand } = 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 = { // DescribeRedshiftIdcApplicationsMessage * RedshiftIdcApplicationArn: "STRING_VALUE", * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeRedshiftIdcApplicationsCommand(input); * const response = await client.send(command); * // { // DescribeRedshiftIdcApplicationsResult * // RedshiftIdcApplications: [ // RedshiftIdcApplicationList * // { // RedshiftIdcApplication * // IdcInstanceArn: "STRING_VALUE", * // RedshiftIdcApplicationName: "STRING_VALUE", * // RedshiftIdcApplicationArn: "STRING_VALUE", * // IdentityNamespace: "STRING_VALUE", * // IdcDisplayName: "STRING_VALUE", * // IamRoleArn: "STRING_VALUE", * // IdcManagedApplicationArn: "STRING_VALUE", * // IdcOnboardStatus: "STRING_VALUE", * // AuthorizedTokenIssuerList: [ // AuthorizedTokenIssuerList * // { // AuthorizedTokenIssuer * // TrustedTokenIssuerArn: "STRING_VALUE", * // AuthorizedAudiencesList: [ // AuthorizedAudienceList * // "STRING_VALUE", * // ], * // }, * // ], * // ServiceIntegrations: [ // ServiceIntegrationList * // { // ServiceIntegrationsUnion Union: only one key present * // LakeFormation: [ // LakeFormationServiceIntegrations * // { // LakeFormationScopeUnion Union: only one key present * // LakeFormationQuery: { // LakeFormationQuery * // Authorization: "Enabled" || "Disabled", // required * // }, * // }, * // ], * // S3AccessGrants: [ // S3AccessGrantsServiceIntegrations * // { // S3AccessGrantsScopeUnion Union: only one key present * // ReadWriteAccess: { // ReadWriteAccess * // Authorization: "Enabled" || "Disabled", // required * // }, * // }, * // ], * // Redshift: [ // RedshiftServiceIntegrations * // { // RedshiftScopeUnion Union: only one key present * // Connect: { // Connect * // Authorization: "Enabled" || "Disabled", // required * // }, * // }, * // ], * // }, * // ], * // ApplicationType: "None" || "Lakehouse", * // Tags: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // SsoTagKeys: [ // TagKeyList * // "STRING_VALUE", * // ], * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeRedshiftIdcApplicationsCommandInput - {@link DescribeRedshiftIdcApplicationsCommandInput} * @returns {@link DescribeRedshiftIdcApplicationsCommandOutput} * @see {@link DescribeRedshiftIdcApplicationsCommandInput} for command's `input` shape. * @see {@link DescribeRedshiftIdcApplicationsCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link DependentServiceAccessDeniedFault} (client fault) *

A dependent service denied access for the integration.

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

Your request cannot be completed because a dependent internal service is * temporarily unavailable. Wait 30 to 60 seconds and try again.

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

The application you attempted to find doesn't exist.

* * @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 DescribeRedshiftIdcApplicationsCommand extends DescribeRedshiftIdcApplicationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeRedshiftIdcApplicationsMessage; output: DescribeRedshiftIdcApplicationsResult; }; sdk: { input: DescribeRedshiftIdcApplicationsCommandInput; output: DescribeRedshiftIdcApplicationsCommandOutput; }; }; }