import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ModifyRedshiftIdcApplicationMessage, ModifyRedshiftIdcApplicationResult } from "../models/models_1"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyRedshiftIdcApplicationCommand}. */ export interface ModifyRedshiftIdcApplicationCommandInput extends ModifyRedshiftIdcApplicationMessage { } /** * @public * * The output of {@link ModifyRedshiftIdcApplicationCommand}. */ export interface ModifyRedshiftIdcApplicationCommandOutput extends ModifyRedshiftIdcApplicationResult, __MetadataBearer { } declare const ModifyRedshiftIdcApplicationCommand_base: { new (input: ModifyRedshiftIdcApplicationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyRedshiftIdcApplicationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Changes an existing Amazon Redshift IAM Identity Center application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, ModifyRedshiftIdcApplicationCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, ModifyRedshiftIdcApplicationCommand } = 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 = { // ModifyRedshiftIdcApplicationMessage * RedshiftIdcApplicationArn: "STRING_VALUE", // required * IdentityNamespace: "STRING_VALUE", * IamRoleArn: "STRING_VALUE", * IdcDisplayName: "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 * }, * }, * ], * }, * ], * }; * const command = new ModifyRedshiftIdcApplicationCommand(input); * const response = await client.send(command); * // { // ModifyRedshiftIdcApplicationResult * // RedshiftIdcApplication: { // 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", * // ], * // }, * // }; * * ``` * * @param ModifyRedshiftIdcApplicationCommandInput - {@link ModifyRedshiftIdcApplicationCommandInput} * @returns {@link ModifyRedshiftIdcApplicationCommandOutput} * @see {@link ModifyRedshiftIdcApplicationCommandInput} for command's `input` shape. * @see {@link ModifyRedshiftIdcApplicationCommandOutput} 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 ModifyRedshiftIdcApplicationCommand extends ModifyRedshiftIdcApplicationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyRedshiftIdcApplicationMessage; output: ModifyRedshiftIdcApplicationResult; }; sdk: { input: ModifyRedshiftIdcApplicationCommandInput; output: ModifyRedshiftIdcApplicationCommandOutput; }; }; }