@aws-sdk/client-redshift 3.451.0 → 3.454.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/Redshift.js +8 -0
  3. package/dist-cjs/commands/CreateRedshiftIdcApplicationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteRedshiftIdcApplicationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeRedshiftIdcApplicationsCommand.js +51 -0
  6. package/dist-cjs/commands/ModifyRedshiftIdcApplicationCommand.js +51 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +74 -2
  9. package/dist-cjs/pagination/DescribeRedshiftIdcApplicationsPaginator.js +29 -0
  10. package/dist-cjs/pagination/index.js +1 -0
  11. package/dist-cjs/protocols/Aws_query.js +654 -6
  12. package/dist-es/Redshift.js +8 -0
  13. package/dist-es/commands/CreateRedshiftIdcApplicationCommand.js +47 -0
  14. package/dist-es/commands/DeleteRedshiftIdcApplicationCommand.js +47 -0
  15. package/dist-es/commands/DescribeRedshiftIdcApplicationsCommand.js +47 -0
  16. package/dist-es/commands/ModifyRedshiftIdcApplicationCommand.js +47 -0
  17. package/dist-es/commands/index.js +4 -0
  18. package/dist-es/models/models_0.js +68 -0
  19. package/dist-es/pagination/DescribeRedshiftIdcApplicationsPaginator.js +25 -0
  20. package/dist-es/pagination/index.js +1 -0
  21. package/dist-es/protocols/Aws_query.js +642 -2
  22. package/dist-types/Redshift.d.ts +28 -0
  23. package/dist-types/RedshiftClient.d.ts +6 -2
  24. package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
  25. package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +140 -0
  26. package/dist-types/commands/DeleteCustomDomainAssociationCommand.d.ts +4 -0
  27. package/dist-types/commands/DeleteRedshiftIdcApplicationCommand.d.ts +84 -0
  28. package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +2 -1
  29. package/dist-types/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -1
  30. package/dist-types/commands/DescribeDataSharesCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeEndpointAccessCommand.d.ts +1 -1
  35. package/dist-types/commands/DescribeEndpointAuthorizationCommand.d.ts +1 -2
  36. package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +119 -0
  37. package/dist-types/commands/ModifyCustomDomainAssociationCommand.d.ts +5 -2
  38. package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +136 -0
  39. package/dist-types/commands/index.d.ts +4 -0
  40. package/dist-types/models/models_0.d.ts +276 -361
  41. package/dist-types/models/models_1.d.ts +458 -3
  42. package/dist-types/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/protocols/Aws_query.d.ts +36 -0
  45. package/dist-types/ts3.4/Redshift.d.ts +68 -0
  46. package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
  47. package/dist-types/ts3.4/commands/CreateRedshiftIdcApplicationCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/DeleteRedshiftIdcApplicationCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/DescribeClusterVersionsCommand.d.ts +2 -4
  50. package/dist-types/ts3.4/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -4
  51. package/dist-types/ts3.4/commands/DescribeDataSharesCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/DescribeEndpointAccessCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/DescribeEndpointAuthorizationCommand.d.ts +4 -2
  57. package/dist-types/ts3.4/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +42 -0
  58. package/dist-types/ts3.4/commands/ModifyRedshiftIdcApplicationCommand.d.ts +42 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +118 -68
  61. package/dist-types/ts3.4/models/models_1.d.ts +98 -2
  62. package/dist-types/ts3.4/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +11 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  64. package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
  65. package/package.json +2 -2
@@ -21,6 +21,7 @@ import { CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput } f
21
21
  import { CreateEventSubscriptionCommandInput, CreateEventSubscriptionCommandOutput } from "./commands/CreateEventSubscriptionCommand";
22
22
  import { CreateHsmClientCertificateCommandInput, CreateHsmClientCertificateCommandOutput } from "./commands/CreateHsmClientCertificateCommand";
23
23
  import { CreateHsmConfigurationCommandInput, CreateHsmConfigurationCommandOutput } from "./commands/CreateHsmConfigurationCommand";
24
+ import { CreateRedshiftIdcApplicationCommandInput, CreateRedshiftIdcApplicationCommandOutput } from "./commands/CreateRedshiftIdcApplicationCommand";
24
25
  import { CreateScheduledActionCommandInput, CreateScheduledActionCommandOutput } from "./commands/CreateScheduledActionCommand";
25
26
  import { CreateSnapshotCopyGrantCommandInput, CreateSnapshotCopyGrantCommandOutput } from "./commands/CreateSnapshotCopyGrantCommand";
26
27
  import { CreateSnapshotScheduleCommandInput, CreateSnapshotScheduleCommandOutput } from "./commands/CreateSnapshotScheduleCommand";
@@ -39,6 +40,7 @@ import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutp
39
40
  import { DeleteHsmClientCertificateCommandInput, DeleteHsmClientCertificateCommandOutput } from "./commands/DeleteHsmClientCertificateCommand";
40
41
  import { DeleteHsmConfigurationCommandInput, DeleteHsmConfigurationCommandOutput } from "./commands/DeleteHsmConfigurationCommand";
41
42
  import { DeletePartnerCommandInput, DeletePartnerCommandOutput } from "./commands/DeletePartnerCommand";
43
+ import { DeleteRedshiftIdcApplicationCommandInput, DeleteRedshiftIdcApplicationCommandOutput } from "./commands/DeleteRedshiftIdcApplicationCommand";
42
44
  import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
43
45
  import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
44
46
  import { DeleteSnapshotCopyGrantCommandInput, DeleteSnapshotCopyGrantCommandOutput } from "./commands/DeleteSnapshotCopyGrantCommand";
@@ -73,6 +75,7 @@ import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput }
73
75
  import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "./commands/DescribeNodeConfigurationOptionsCommand";
74
76
  import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "./commands/DescribeOrderableClusterOptionsCommand";
75
77
  import { DescribePartnersCommandInput, DescribePartnersCommandOutput } from "./commands/DescribePartnersCommand";
78
+ import { DescribeRedshiftIdcApplicationsCommandInput, DescribeRedshiftIdcApplicationsCommandOutput } from "./commands/DescribeRedshiftIdcApplicationsCommand";
76
79
  import { DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput } from "./commands/DescribeReservedNodeExchangeStatusCommand";
77
80
  import { DescribeReservedNodeOfferingsCommandInput, DescribeReservedNodeOfferingsCommandOutput } from "./commands/DescribeReservedNodeOfferingsCommand";
78
81
  import { DescribeReservedNodesCommandInput, DescribeReservedNodesCommandOutput } from "./commands/DescribeReservedNodesCommand";
@@ -108,6 +111,7 @@ import { ModifyClusterSubnetGroupCommandInput, ModifyClusterSubnetGroupCommandOu
108
111
  import { ModifyCustomDomainAssociationCommandInput, ModifyCustomDomainAssociationCommandOutput } from "./commands/ModifyCustomDomainAssociationCommand";
109
112
  import { ModifyEndpointAccessCommandInput, ModifyEndpointAccessCommandOutput } from "./commands/ModifyEndpointAccessCommand";
110
113
  import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "./commands/ModifyEventSubscriptionCommand";
114
+ import { ModifyRedshiftIdcApplicationCommandInput, ModifyRedshiftIdcApplicationCommandOutput } from "./commands/ModifyRedshiftIdcApplicationCommand";
111
115
  import { ModifyScheduledActionCommandInput, ModifyScheduledActionCommandOutput } from "./commands/ModifyScheduledActionCommand";
112
116
  import { ModifySnapshotCopyRetentionPeriodCommandInput, ModifySnapshotCopyRetentionPeriodCommandOutput } from "./commands/ModifySnapshotCopyRetentionPeriodCommand";
113
117
  import { ModifySnapshotScheduleCommandInput, ModifySnapshotScheduleCommandOutput } from "./commands/ModifySnapshotScheduleCommand";
@@ -261,6 +265,12 @@ export interface Redshift {
261
265
  createHsmConfiguration(args: CreateHsmConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateHsmConfigurationCommandOutput>;
262
266
  createHsmConfiguration(args: CreateHsmConfigurationCommandInput, cb: (err: any, data?: CreateHsmConfigurationCommandOutput) => void): void;
263
267
  createHsmConfiguration(args: CreateHsmConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHsmConfigurationCommandOutput) => void): void;
268
+ /**
269
+ * @see {@link CreateRedshiftIdcApplicationCommand}
270
+ */
271
+ createRedshiftIdcApplication(args: CreateRedshiftIdcApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateRedshiftIdcApplicationCommandOutput>;
272
+ createRedshiftIdcApplication(args: CreateRedshiftIdcApplicationCommandInput, cb: (err: any, data?: CreateRedshiftIdcApplicationCommandOutput) => void): void;
273
+ createRedshiftIdcApplication(args: CreateRedshiftIdcApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRedshiftIdcApplicationCommandOutput) => void): void;
264
274
  /**
265
275
  * @see {@link CreateScheduledActionCommand}
266
276
  */
@@ -369,6 +379,12 @@ export interface Redshift {
369
379
  deletePartner(args: DeletePartnerCommandInput, options?: __HttpHandlerOptions): Promise<DeletePartnerCommandOutput>;
370
380
  deletePartner(args: DeletePartnerCommandInput, cb: (err: any, data?: DeletePartnerCommandOutput) => void): void;
371
381
  deletePartner(args: DeletePartnerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePartnerCommandOutput) => void): void;
382
+ /**
383
+ * @see {@link DeleteRedshiftIdcApplicationCommand}
384
+ */
385
+ deleteRedshiftIdcApplication(args: DeleteRedshiftIdcApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRedshiftIdcApplicationCommandOutput>;
386
+ deleteRedshiftIdcApplication(args: DeleteRedshiftIdcApplicationCommandInput, cb: (err: any, data?: DeleteRedshiftIdcApplicationCommandOutput) => void): void;
387
+ deleteRedshiftIdcApplication(args: DeleteRedshiftIdcApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRedshiftIdcApplicationCommandOutput) => void): void;
372
388
  /**
373
389
  * @see {@link DeleteResourcePolicyCommand}
374
390
  */
@@ -573,6 +589,12 @@ export interface Redshift {
573
589
  describePartners(args: DescribePartnersCommandInput, options?: __HttpHandlerOptions): Promise<DescribePartnersCommandOutput>;
574
590
  describePartners(args: DescribePartnersCommandInput, cb: (err: any, data?: DescribePartnersCommandOutput) => void): void;
575
591
  describePartners(args: DescribePartnersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePartnersCommandOutput) => void): void;
592
+ /**
593
+ * @see {@link DescribeRedshiftIdcApplicationsCommand}
594
+ */
595
+ describeRedshiftIdcApplications(args: DescribeRedshiftIdcApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRedshiftIdcApplicationsCommandOutput>;
596
+ describeRedshiftIdcApplications(args: DescribeRedshiftIdcApplicationsCommandInput, cb: (err: any, data?: DescribeRedshiftIdcApplicationsCommandOutput) => void): void;
597
+ describeRedshiftIdcApplications(args: DescribeRedshiftIdcApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRedshiftIdcApplicationsCommandOutput) => void): void;
576
598
  /**
577
599
  * @see {@link DescribeReservedNodeExchangeStatusCommand}
578
600
  */
@@ -783,6 +805,12 @@ export interface Redshift {
783
805
  modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEventSubscriptionCommandOutput>;
784
806
  modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void): void;
785
807
  modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void): void;
808
+ /**
809
+ * @see {@link ModifyRedshiftIdcApplicationCommand}
810
+ */
811
+ modifyRedshiftIdcApplication(args: ModifyRedshiftIdcApplicationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyRedshiftIdcApplicationCommandOutput>;
812
+ modifyRedshiftIdcApplication(args: ModifyRedshiftIdcApplicationCommandInput, cb: (err: any, data?: ModifyRedshiftIdcApplicationCommandOutput) => void): void;
813
+ modifyRedshiftIdcApplication(args: ModifyRedshiftIdcApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyRedshiftIdcApplicationCommandOutput) => void): void;
786
814
  /**
787
815
  * @see {@link ModifyScheduledActionCommand}
788
816
  */
@@ -30,6 +30,7 @@ import { CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput } f
30
30
  import { CreateEventSubscriptionCommandInput, CreateEventSubscriptionCommandOutput } from "./commands/CreateEventSubscriptionCommand";
31
31
  import { CreateHsmClientCertificateCommandInput, CreateHsmClientCertificateCommandOutput } from "./commands/CreateHsmClientCertificateCommand";
32
32
  import { CreateHsmConfigurationCommandInput, CreateHsmConfigurationCommandOutput } from "./commands/CreateHsmConfigurationCommand";
33
+ import { CreateRedshiftIdcApplicationCommandInput, CreateRedshiftIdcApplicationCommandOutput } from "./commands/CreateRedshiftIdcApplicationCommand";
33
34
  import { CreateScheduledActionCommandInput, CreateScheduledActionCommandOutput } from "./commands/CreateScheduledActionCommand";
34
35
  import { CreateSnapshotCopyGrantCommandInput, CreateSnapshotCopyGrantCommandOutput } from "./commands/CreateSnapshotCopyGrantCommand";
35
36
  import { CreateSnapshotScheduleCommandInput, CreateSnapshotScheduleCommandOutput } from "./commands/CreateSnapshotScheduleCommand";
@@ -48,6 +49,7 @@ import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutp
48
49
  import { DeleteHsmClientCertificateCommandInput, DeleteHsmClientCertificateCommandOutput } from "./commands/DeleteHsmClientCertificateCommand";
49
50
  import { DeleteHsmConfigurationCommandInput, DeleteHsmConfigurationCommandOutput } from "./commands/DeleteHsmConfigurationCommand";
50
51
  import { DeletePartnerCommandInput, DeletePartnerCommandOutput } from "./commands/DeletePartnerCommand";
52
+ import { DeleteRedshiftIdcApplicationCommandInput, DeleteRedshiftIdcApplicationCommandOutput } from "./commands/DeleteRedshiftIdcApplicationCommand";
51
53
  import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
52
54
  import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
53
55
  import { DeleteSnapshotCopyGrantCommandInput, DeleteSnapshotCopyGrantCommandOutput } from "./commands/DeleteSnapshotCopyGrantCommand";
@@ -82,6 +84,7 @@ import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput }
82
84
  import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "./commands/DescribeNodeConfigurationOptionsCommand";
83
85
  import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "./commands/DescribeOrderableClusterOptionsCommand";
84
86
  import { DescribePartnersCommandInput, DescribePartnersCommandOutput } from "./commands/DescribePartnersCommand";
87
+ import { DescribeRedshiftIdcApplicationsCommandInput, DescribeRedshiftIdcApplicationsCommandOutput } from "./commands/DescribeRedshiftIdcApplicationsCommand";
85
88
  import { DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput } from "./commands/DescribeReservedNodeExchangeStatusCommand";
86
89
  import { DescribeReservedNodeOfferingsCommandInput, DescribeReservedNodeOfferingsCommandOutput } from "./commands/DescribeReservedNodeOfferingsCommand";
87
90
  import { DescribeReservedNodesCommandInput, DescribeReservedNodesCommandOutput } from "./commands/DescribeReservedNodesCommand";
@@ -117,6 +120,7 @@ import { ModifyClusterSubnetGroupCommandInput, ModifyClusterSubnetGroupCommandOu
117
120
  import { ModifyCustomDomainAssociationCommandInput, ModifyCustomDomainAssociationCommandOutput } from "./commands/ModifyCustomDomainAssociationCommand";
118
121
  import { ModifyEndpointAccessCommandInput, ModifyEndpointAccessCommandOutput } from "./commands/ModifyEndpointAccessCommand";
119
122
  import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "./commands/ModifyEventSubscriptionCommand";
123
+ import { ModifyRedshiftIdcApplicationCommandInput, ModifyRedshiftIdcApplicationCommandOutput } from "./commands/ModifyRedshiftIdcApplicationCommand";
120
124
  import { ModifyScheduledActionCommandInput, ModifyScheduledActionCommandOutput } from "./commands/ModifyScheduledActionCommand";
121
125
  import { ModifySnapshotCopyRetentionPeriodCommandInput, ModifySnapshotCopyRetentionPeriodCommandOutput } from "./commands/ModifySnapshotCopyRetentionPeriodCommand";
122
126
  import { ModifySnapshotScheduleCommandInput, ModifySnapshotScheduleCommandOutput } from "./commands/ModifySnapshotScheduleCommand";
@@ -142,11 +146,11 @@ export { __Client };
142
146
  /**
143
147
  * @public
144
148
  */
145
- export type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateCustomDomainAssociationCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteCustomDomainAssociationCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteResourcePolicyCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeCustomDomainAssociationsCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeInboundIntegrationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | FailoverPrimaryComputeCommandInput | GetClusterCredentialsCommandInput | GetClusterCredentialsWithIAMCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | GetResourcePolicyCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyCustomDomainAssociationCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | PutResourcePolicyCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
149
+ export type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateCustomDomainAssociationCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateRedshiftIdcApplicationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteCustomDomainAssociationCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteRedshiftIdcApplicationCommandInput | DeleteResourcePolicyCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeCustomDomainAssociationsCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeInboundIntegrationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeRedshiftIdcApplicationsCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | FailoverPrimaryComputeCommandInput | GetClusterCredentialsCommandInput | GetClusterCredentialsWithIAMCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | GetResourcePolicyCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyCustomDomainAssociationCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyRedshiftIdcApplicationCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | PutResourcePolicyCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
146
150
  /**
147
151
  * @public
148
152
  */
149
- export type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateCustomDomainAssociationCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteCustomDomainAssociationCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteResourcePolicyCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeCustomDomainAssociationsCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeInboundIntegrationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | FailoverPrimaryComputeCommandOutput | GetClusterCredentialsCommandOutput | GetClusterCredentialsWithIAMCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | GetResourcePolicyCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyCustomDomainAssociationCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | PutResourcePolicyCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
153
+ export type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateCustomDomainAssociationCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateRedshiftIdcApplicationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteCustomDomainAssociationCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteRedshiftIdcApplicationCommandOutput | DeleteResourcePolicyCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeCustomDomainAssociationsCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeInboundIntegrationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeRedshiftIdcApplicationsCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | FailoverPrimaryComputeCommandOutput | GetClusterCredentialsCommandOutput | GetClusterCredentialsWithIAMCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | GetResourcePolicyCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyCustomDomainAssociationCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyRedshiftIdcApplicationCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | PutResourcePolicyCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
150
154
  /**
151
155
  * @public
152
156
  */
@@ -86,6 +86,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
86
86
  * MasterPasswordSecretKmsKeyId: "STRING_VALUE",
87
87
  * IpAddressType: "STRING_VALUE",
88
88
  * MultiAZ: true || false,
89
+ * RedshiftIdcApplicationArn: "STRING_VALUE",
89
90
  * };
90
91
  * const command = new CreateClusterCommand(input);
91
92
  * const response = await client.send(command);
@@ -365,6 +366,9 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
365
366
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
366
367
  * </p>
367
368
  *
369
+ * @throws {@link RedshiftIdcApplicationNotExistsFault} (client fault)
370
+ * <p>The application you attempted to find doesn't exist.</p>
371
+ *
368
372
  * @throws {@link SnapshotScheduleNotFoundFault} (client fault)
369
373
  * <p>We could not find the specified snapshot schedule. </p>
370
374
  *
@@ -0,0 +1,140 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { CreateRedshiftIdcApplicationMessage, CreateRedshiftIdcApplicationResult } from "../models/models_0";
5
+ import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateRedshiftIdcApplicationCommand}.
14
+ */
15
+ export interface CreateRedshiftIdcApplicationCommandInput extends CreateRedshiftIdcApplicationMessage {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateRedshiftIdcApplicationCommand}.
21
+ */
22
+ export interface CreateRedshiftIdcApplicationCommandOutput extends CreateRedshiftIdcApplicationResult, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates an Amazon Redshift application for use with IAM Identity Center.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { RedshiftClient, CreateRedshiftIdcApplicationCommand } from "@aws-sdk/client-redshift"; // ES Modules import
31
+ * // const { RedshiftClient, CreateRedshiftIdcApplicationCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
32
+ * const client = new RedshiftClient(config);
33
+ * const input = { // CreateRedshiftIdcApplicationMessage
34
+ * IdcInstanceArn: "STRING_VALUE", // required
35
+ * RedshiftIdcApplicationName: "STRING_VALUE", // required
36
+ * IdentityNamespace: "STRING_VALUE",
37
+ * IdcDisplayName: "STRING_VALUE", // required
38
+ * IamRoleArn: "STRING_VALUE", // required
39
+ * AuthorizedTokenIssuerList: [ // AuthorizedTokenIssuerList
40
+ * { // AuthorizedTokenIssuer
41
+ * TrustedTokenIssuerArn: "STRING_VALUE",
42
+ * AuthorizedAudiencesList: [ // AuthorizedAudienceList
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * },
46
+ * ],
47
+ * ServiceIntegrations: [ // ServiceIntegrationList
48
+ * { // ServiceIntegrationsUnion Union: only one key present
49
+ * LakeFormation: [ // LakeFormationServiceIntegrations
50
+ * { // LakeFormationScopeUnion Union: only one key present
51
+ * LakeFormationQuery: { // LakeFormationQuery
52
+ * Authorization: "Enabled" || "Disabled", // required
53
+ * },
54
+ * },
55
+ * ],
56
+ * },
57
+ * ],
58
+ * };
59
+ * const command = new CreateRedshiftIdcApplicationCommand(input);
60
+ * const response = await client.send(command);
61
+ * // { // CreateRedshiftIdcApplicationResult
62
+ * // RedshiftIdcApplication: { // RedshiftIdcApplication
63
+ * // IdcInstanceArn: "STRING_VALUE",
64
+ * // RedshiftIdcApplicationName: "STRING_VALUE",
65
+ * // RedshiftIdcApplicationArn: "STRING_VALUE",
66
+ * // IdentityNamespace: "STRING_VALUE",
67
+ * // IdcDisplayName: "STRING_VALUE",
68
+ * // IamRoleArn: "STRING_VALUE",
69
+ * // IdcManagedApplicationArn: "STRING_VALUE",
70
+ * // IdcOnboardStatus: "STRING_VALUE",
71
+ * // AuthorizedTokenIssuerList: [ // AuthorizedTokenIssuerList
72
+ * // { // AuthorizedTokenIssuer
73
+ * // TrustedTokenIssuerArn: "STRING_VALUE",
74
+ * // AuthorizedAudiencesList: [ // AuthorizedAudienceList
75
+ * // "STRING_VALUE",
76
+ * // ],
77
+ * // },
78
+ * // ],
79
+ * // ServiceIntegrations: [ // ServiceIntegrationList
80
+ * // { // ServiceIntegrationsUnion Union: only one key present
81
+ * // LakeFormation: [ // LakeFormationServiceIntegrations
82
+ * // { // LakeFormationScopeUnion Union: only one key present
83
+ * // LakeFormationQuery: { // LakeFormationQuery
84
+ * // Authorization: "Enabled" || "Disabled", // required
85
+ * // },
86
+ * // },
87
+ * // ],
88
+ * // },
89
+ * // ],
90
+ * // },
91
+ * // };
92
+ *
93
+ * ```
94
+ *
95
+ * @param CreateRedshiftIdcApplicationCommandInput - {@link CreateRedshiftIdcApplicationCommandInput}
96
+ * @returns {@link CreateRedshiftIdcApplicationCommandOutput}
97
+ * @see {@link CreateRedshiftIdcApplicationCommandInput} for command's `input` shape.
98
+ * @see {@link CreateRedshiftIdcApplicationCommandOutput} for command's `response` shape.
99
+ * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
100
+ *
101
+ * @throws {@link DependentServiceAccessDeniedFault} (client fault)
102
+ * <p>A dependent service denied access for the integration.</p>
103
+ *
104
+ * @throws {@link DependentServiceUnavailableFault} (client fault)
105
+ * <p>Your request cannot be completed because a dependent internal service is
106
+ * temporarily unavailable. Wait 30 to 60 seconds and try again.</p>
107
+ *
108
+ * @throws {@link RedshiftIdcApplicationAlreadyExistsFault} (client fault)
109
+ * <p>The application you attempted to add already exists.</p>
110
+ *
111
+ * @throws {@link RedshiftIdcApplicationQuotaExceededFault} (client fault)
112
+ * <p>The maximum number of Redshift IAM Identity Center applications was exceeded.</p>
113
+ *
114
+ * @throws {@link UnsupportedOperationFault} (client fault)
115
+ * <p>The requested operation isn't supported.</p>
116
+ *
117
+ * @throws {@link RedshiftServiceException}
118
+ * <p>Base exception class for all service exceptions from Redshift service.</p>
119
+ *
120
+ */
121
+ export declare class CreateRedshiftIdcApplicationCommand extends $Command<CreateRedshiftIdcApplicationCommandInput, CreateRedshiftIdcApplicationCommandOutput, RedshiftClientResolvedConfig> {
122
+ readonly input: CreateRedshiftIdcApplicationCommandInput;
123
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
124
+ /**
125
+ * @public
126
+ */
127
+ constructor(input: CreateRedshiftIdcApplicationCommandInput);
128
+ /**
129
+ * @internal
130
+ */
131
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRedshiftIdcApplicationCommandInput, CreateRedshiftIdcApplicationCommandOutput>;
132
+ /**
133
+ * @internal
134
+ */
135
+ private serialize;
136
+ /**
137
+ * @internal
138
+ */
139
+ private deserialize;
140
+ }
@@ -32,6 +32,7 @@ export interface DeleteCustomDomainAssociationCommandOutput extends __MetadataBe
32
32
  * const client = new RedshiftClient(config);
33
33
  * const input = { // DeleteCustomDomainAssociationMessage
34
34
  * ClusterIdentifier: "STRING_VALUE", // required
35
+ * CustomDomainName: "STRING_VALUE", // required
35
36
  * };
36
37
  * const command = new DeleteCustomDomainAssociationCommand(input);
37
38
  * const response = await client.send(command);
@@ -52,6 +53,9 @@ export interface DeleteCustomDomainAssociationCommandOutput extends __MetadataBe
52
53
  * @throws {@link CustomCnameAssociationFault} (client fault)
53
54
  * <p>An error occurred when an attempt was made to change the custom domain association.</p>
54
55
  *
56
+ * @throws {@link CustomDomainAssociationNotFoundFault} (client fault)
57
+ * <p>An error occurred. The custom domain name couldn't be found.</p>
58
+ *
55
59
  * @throws {@link UnsupportedOperationFault} (client fault)
56
60
  * <p>The requested operation isn't supported.</p>
57
61
  *
@@ -0,0 +1,84 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { DeleteRedshiftIdcApplicationMessage } from "../models/models_0";
5
+ import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteRedshiftIdcApplicationCommand}.
14
+ */
15
+ export interface DeleteRedshiftIdcApplicationCommandInput extends DeleteRedshiftIdcApplicationMessage {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteRedshiftIdcApplicationCommand}.
21
+ */
22
+ export interface DeleteRedshiftIdcApplicationCommandOutput extends __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes an Amazon Redshift IAM Identity Center application.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { RedshiftClient, DeleteRedshiftIdcApplicationCommand } from "@aws-sdk/client-redshift"; // ES Modules import
31
+ * // const { RedshiftClient, DeleteRedshiftIdcApplicationCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
32
+ * const client = new RedshiftClient(config);
33
+ * const input = { // DeleteRedshiftIdcApplicationMessage
34
+ * RedshiftIdcApplicationArn: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new DeleteRedshiftIdcApplicationCommand(input);
37
+ * const response = await client.send(command);
38
+ * // {};
39
+ *
40
+ * ```
41
+ *
42
+ * @param DeleteRedshiftIdcApplicationCommandInput - {@link DeleteRedshiftIdcApplicationCommandInput}
43
+ * @returns {@link DeleteRedshiftIdcApplicationCommandOutput}
44
+ * @see {@link DeleteRedshiftIdcApplicationCommandInput} for command's `input` shape.
45
+ * @see {@link DeleteRedshiftIdcApplicationCommandOutput} for command's `response` shape.
46
+ * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
47
+ *
48
+ * @throws {@link DependentServiceAccessDeniedFault} (client fault)
49
+ * <p>A dependent service denied access for the integration.</p>
50
+ *
51
+ * @throws {@link DependentServiceUnavailableFault} (client fault)
52
+ * <p>Your request cannot be completed because a dependent internal service is
53
+ * temporarily unavailable. Wait 30 to 60 seconds and try again.</p>
54
+ *
55
+ * @throws {@link RedshiftIdcApplicationNotExistsFault} (client fault)
56
+ * <p>The application you attempted to find doesn't exist.</p>
57
+ *
58
+ * @throws {@link UnsupportedOperationFault} (client fault)
59
+ * <p>The requested operation isn't supported.</p>
60
+ *
61
+ * @throws {@link RedshiftServiceException}
62
+ * <p>Base exception class for all service exceptions from Redshift service.</p>
63
+ *
64
+ */
65
+ export declare class DeleteRedshiftIdcApplicationCommand extends $Command<DeleteRedshiftIdcApplicationCommandInput, DeleteRedshiftIdcApplicationCommandOutput, RedshiftClientResolvedConfig> {
66
+ readonly input: DeleteRedshiftIdcApplicationCommandInput;
67
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
71
+ constructor(input: DeleteRedshiftIdcApplicationCommandInput);
72
+ /**
73
+ * @internal
74
+ */
75
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRedshiftIdcApplicationCommandInput, DeleteRedshiftIdcApplicationCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
79
+ private serialize;
80
+ /**
81
+ * @internal
82
+ */
83
+ private deserialize;
84
+ }
@@ -1,7 +1,8 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { ClusterVersionsMessage, DescribeClusterVersionsMessage } from "../models/models_0";
4
+ import { ClusterVersionsMessage } from "../models/models_0";
5
+ import { DescribeClusterVersionsMessage } from "../models/models_1";
5
6
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
7
  /**
7
8
  * @public
@@ -1,7 +1,8 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { CustomDomainAssociationsMessage, DescribeCustomDomainAssociationsMessage } from "../models/models_0";
4
+ import { CustomDomainAssociationsMessage } from "../models/models_0";
5
+ import { DescribeCustomDomainAssociationsMessage } from "../models/models_1";
5
6
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
7
  /**
7
8
  * @public
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DescribeDataSharesMessage, DescribeDataSharesResult } from "../models/models_0";
4
+ import { DescribeDataSharesMessage, DescribeDataSharesResult } from "../models/models_1";
5
5
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
6
  /**
7
7
  * @public
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DescribeDataSharesForConsumerMessage, DescribeDataSharesForConsumerResult } from "../models/models_0";
4
+ import { DescribeDataSharesForConsumerMessage, DescribeDataSharesForConsumerResult } from "../models/models_1";
5
5
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
6
  /**
7
7
  * @public
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DescribeDataSharesForProducerMessage, DescribeDataSharesForProducerResult } from "../models/models_0";
4
+ import { DescribeDataSharesForProducerMessage, DescribeDataSharesForProducerResult } from "../models/models_1";
5
5
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
6
  /**
7
7
  * @public
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DescribeDefaultClusterParametersMessage, DescribeDefaultClusterParametersResult } from "../models/models_0";
4
+ import { DescribeDefaultClusterParametersMessage, DescribeDefaultClusterParametersResult } from "../models/models_1";
5
5
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
6
  /**
7
7
  * @public
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DescribeEndpointAccessMessage, EndpointAccessList } from "../models/models_0";
4
+ import { DescribeEndpointAccessMessage, EndpointAccessList } from "../models/models_1";
5
5
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
6
  /**
7
7
  * @public
@@ -1,8 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DescribeEndpointAuthorizationMessage } from "../models/models_0";
5
- import { EndpointAuthorizationList } from "../models/models_1";
4
+ import { DescribeEndpointAuthorizationMessage, EndpointAuthorizationList } from "../models/models_1";
6
5
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
7
6
  /**
8
7
  * @public