@aws-sdk/client-redshift 3.936.0 → 3.939.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 (50) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +102 -27
  3. package/dist-es/Redshift.js +2 -0
  4. package/dist-es/commands/ModifyLakehouseConfigurationCommand.js +16 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/enums.js +16 -4
  7. package/dist-es/models/errors.js +12 -12
  8. package/dist-es/schemas/schemas_0.js +57 -11
  9. package/dist-types/Redshift.d.ts +7 -0
  10. package/dist-types/RedshiftClient.d.ts +3 -2
  11. package/dist-types/commands/CreateClusterCommand.d.ts +10 -0
  12. package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteClusterCommand.d.ts +2 -0
  14. package/dist-types/commands/DescribeClustersCommand.d.ts +2 -0
  15. package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +8 -0
  16. package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -0
  17. package/dist-types/commands/EnableSnapshotCopyCommand.d.ts +2 -0
  18. package/dist-types/commands/FailoverPrimaryComputeCommand.d.ts +2 -0
  19. package/dist-types/commands/ModifyClusterCommand.d.ts +2 -0
  20. package/dist-types/commands/ModifyClusterDbRevisionCommand.d.ts +2 -0
  21. package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +2 -0
  22. package/dist-types/commands/ModifyClusterMaintenanceCommand.d.ts +2 -0
  23. package/dist-types/commands/ModifyLakehouseConfigurationCommand.d.ts +106 -0
  24. package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +16 -1
  25. package/dist-types/commands/ModifyScheduledActionCommand.d.ts +2 -1
  26. package/dist-types/commands/ModifySnapshotCopyRetentionPeriodCommand.d.ts +2 -0
  27. package/dist-types/commands/PauseClusterCommand.d.ts +2 -0
  28. package/dist-types/commands/RebootClusterCommand.d.ts +2 -0
  29. package/dist-types/commands/ResizeClusterCommand.d.ts +2 -0
  30. package/dist-types/commands/RestoreFromClusterSnapshotCommand.d.ts +10 -0
  31. package/dist-types/commands/ResumeClusterCommand.d.ts +2 -0
  32. package/dist-types/commands/RotateEncryptionKeyCommand.d.ts +2 -0
  33. package/dist-types/commands/index.d.ts +1 -0
  34. package/dist-types/models/enums.d.ts +48 -12
  35. package/dist-types/models/errors.d.ts +12 -12
  36. package/dist-types/models/models_0.d.ts +124 -99
  37. package/dist-types/models/models_1.d.ts +170 -2
  38. package/dist-types/schemas/schemas_0.d.ts +6 -0
  39. package/dist-types/ts3.4/Redshift.d.ts +17 -0
  40. package/dist-types/ts3.4/RedshiftClient.d.ts +6 -0
  41. package/dist-types/ts3.4/commands/ModifyLakehouseConfigurationCommand.d.ts +49 -0
  42. package/dist-types/ts3.4/commands/ModifyRedshiftIdcApplicationCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/ModifyScheduledActionCommand.d.ts +2 -4
  44. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  45. package/dist-types/ts3.4/models/enums.d.ts +24 -6
  46. package/dist-types/ts3.4/models/errors.d.ts +10 -10
  47. package/dist-types/ts3.4/models/models_0.d.ts +43 -21
  48. package/dist-types/ts3.4/models/models_1.d.ts +37 -0
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
  50. package/package.json +2 -2
@@ -1,5 +1,150 @@
1
- import { AquaConfigurationStatus, NamespaceRegistrationStatus, PartnerIntegrationStatus, UsageLimitBreachAction } from "./enums";
2
- import { Cluster, ClusterSecurityGroup, NamespaceIdentifierUnion, Parameter, ReservedNode, ResourcePolicy, Snapshot, TableRestoreStatus } from "./models_0";
1
+ import { AquaConfigurationStatus, LakehouseIdcRegistration, LakehouseRegistration, NamespaceRegistrationStatus, PartnerIntegrationStatus, UsageLimitBreachAction } from "./enums";
2
+ import { AuthorizedTokenIssuer, Cluster, ClusterSecurityGroup, NamespaceIdentifierUnion, Parameter, RedshiftIdcApplication, ReservedNode, ResourcePolicy, ScheduledActionType, ServiceIntegrationsUnion, Snapshot, TableRestoreStatus } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface ModifyLakehouseConfigurationMessage {
7
+ /**
8
+ * <p>The unique identifier of the cluster whose lakehouse configuration you want to modify.</p>
9
+ * @public
10
+ */
11
+ ClusterIdentifier: string | undefined;
12
+ /**
13
+ * <p>Specifies whether to register or deregister the cluster with Amazon Redshift federated permissions. Valid values are <code>Register</code> or <code>Deregister</code>.</p>
14
+ * @public
15
+ */
16
+ LakehouseRegistration?: LakehouseRegistration | undefined;
17
+ /**
18
+ * <p>The name of the Glue data catalog that will be associated with the cluster enabled with Amazon Redshift federated permissions.</p>
19
+ * <p>Constraints:</p>
20
+ * <ul>
21
+ * <li>
22
+ * <p>Must contain at least one lowercase letter.</p>
23
+ * </li>
24
+ * <li>
25
+ * <p>Can only contain lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-).</p>
26
+ * </li>
27
+ * </ul>
28
+ * <p>Pattern: <code>^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$</code>
29
+ * </p>
30
+ * <p>Example: <code>my-catalog_01</code>
31
+ * </p>
32
+ * @public
33
+ */
34
+ CatalogName?: string | undefined;
35
+ /**
36
+ * <p>Modifies the Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions. Valid values are <code>Associate</code> or <code>Disassociate</code>.</p>
37
+ * @public
38
+ */
39
+ LakehouseIdcRegistration?: LakehouseIdcRegistration | undefined;
40
+ /**
41
+ * <p>The Amazon Resource Name (ARN) of the IAM Identity Center application used for enabling Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions.</p>
42
+ * @public
43
+ */
44
+ LakehouseIdcApplicationArn?: string | undefined;
45
+ /**
46
+ * <p>A boolean value that, if <code>true</code>, validates the request without actually modifying the lakehouse configuration. Use this to check for errors before making changes.</p>
47
+ * @public
48
+ */
49
+ DryRun?: boolean | undefined;
50
+ }
51
+ /**
52
+ * @public
53
+ */
54
+ export interface ModifyRedshiftIdcApplicationMessage {
55
+ /**
56
+ * <p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>
57
+ * @public
58
+ */
59
+ RedshiftIdcApplicationArn: string | undefined;
60
+ /**
61
+ * <p>The namespace for the Amazon Redshift IAM Identity Center application to change. It determines which managed application
62
+ * verifies the connection token.</p>
63
+ * @public
64
+ */
65
+ IdentityNamespace?: string | undefined;
66
+ /**
67
+ * <p>The IAM role ARN associated with the Amazon Redshift IAM Identity Center application to change. It has the required permissions
68
+ * to be assumed and invoke the IDC Identity Center API.</p>
69
+ * @public
70
+ */
71
+ IamRoleArn?: string | undefined;
72
+ /**
73
+ * <p>The display name for the Amazon Redshift IAM Identity Center application to change. It appears on the console.</p>
74
+ * @public
75
+ */
76
+ IdcDisplayName?: string | undefined;
77
+ /**
78
+ * <p>The authorized token issuer list for the Amazon Redshift IAM Identity Center application to change.</p>
79
+ * @public
80
+ */
81
+ AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
82
+ /**
83
+ * <p>A collection of service integrations associated with the application.</p>
84
+ * @public
85
+ */
86
+ ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
87
+ }
88
+ /**
89
+ * @public
90
+ */
91
+ export interface ModifyRedshiftIdcApplicationResult {
92
+ /**
93
+ * <p>Contains properties for the Redshift IDC application.</p>
94
+ * @public
95
+ */
96
+ RedshiftIdcApplication?: RedshiftIdcApplication | undefined;
97
+ }
98
+ /**
99
+ * @public
100
+ */
101
+ export interface ModifyScheduledActionMessage {
102
+ /**
103
+ * <p>The name of the scheduled action to modify. </p>
104
+ * @public
105
+ */
106
+ ScheduledActionName: string | undefined;
107
+ /**
108
+ * <p>A modified JSON format of the scheduled action.
109
+ * For more information about this parameter, see <a>ScheduledAction</a>. </p>
110
+ * @public
111
+ */
112
+ TargetAction?: ScheduledActionType | undefined;
113
+ /**
114
+ * <p>A modified schedule in either <code>at( )</code> or <code>cron( )</code> format.
115
+ * For more information about this parameter, see <a>ScheduledAction</a>.</p>
116
+ * @public
117
+ */
118
+ Schedule?: string | undefined;
119
+ /**
120
+ * <p>A different IAM role to assume to run the target action.
121
+ * For more information about this parameter, see <a>ScheduledAction</a>.</p>
122
+ * @public
123
+ */
124
+ IamRole?: string | undefined;
125
+ /**
126
+ * <p>A modified description of the scheduled action. </p>
127
+ * @public
128
+ */
129
+ ScheduledActionDescription?: string | undefined;
130
+ /**
131
+ * <p>A modified start time of the scheduled action.
132
+ * For more information about this parameter, see <a>ScheduledAction</a>. </p>
133
+ * @public
134
+ */
135
+ StartTime?: Date | undefined;
136
+ /**
137
+ * <p>A modified end time of the scheduled action.
138
+ * For more information about this parameter, see <a>ScheduledAction</a>. </p>
139
+ * @public
140
+ */
141
+ EndTime?: Date | undefined;
142
+ /**
143
+ * <p>A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled. </p>
144
+ * @public
145
+ */
146
+ Enable?: boolean | undefined;
147
+ }
3
148
  /**
4
149
  * <p></p>
5
150
  * @public
@@ -542,6 +687,29 @@ export interface RestoreFromClusterSnapshotMessage {
542
687
  * @public
543
688
  */
544
689
  MultiAZ?: boolean | undefined;
690
+ /**
691
+ * <p>The name of the Glue Data Catalog that will be associated with the cluster enabled with Amazon Redshift federated permissions.</p>
692
+ * <p>Constraints:</p>
693
+ * <ul>
694
+ * <li>
695
+ * <p>Must contain at least one lowercase letter.</p>
696
+ * </li>
697
+ * <li>
698
+ * <p>Can only contain lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-).</p>
699
+ * </li>
700
+ * </ul>
701
+ * <p>Pattern: <code>^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$</code>
702
+ * </p>
703
+ * <p>Example: <code>my-catalog_01</code>
704
+ * </p>
705
+ * @public
706
+ */
707
+ CatalogName?: string | undefined;
708
+ /**
709
+ * <p>The Amazon Resource Name (ARN) of the IAM Identity Center application used for enabling Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions.</p>
710
+ * @public
711
+ */
712
+ RedshiftIdcApplicationArn?: string | undefined;
545
713
  }
546
714
  /**
547
715
  * @public
@@ -76,6 +76,7 @@ export declare var ClusterSubnetQuotaExceededFault: StaticErrorSchema;
76
76
  export declare var ClusterVersion: StaticStructureSchema;
77
77
  export declare var ClusterVersionsMessage: StaticStructureSchema;
78
78
  export declare var ConflictPolicyUpdateFault: StaticErrorSchema;
79
+ export declare var Connect: StaticStructureSchema;
79
80
  export declare var CopyClusterSnapshotMessage: StaticStructureSchema;
80
81
  export declare var CopyClusterSnapshotResult: StaticStructureSchema;
81
82
  export declare var CopyToRegionDisabledFault: StaticErrorSchema;
@@ -298,6 +299,7 @@ export declare var InvalidVPCNetworkStateFault: StaticErrorSchema;
298
299
  export declare var IPRange: StaticStructureSchema;
299
300
  export declare var Ipv6CidrBlockNotFoundFault: StaticErrorSchema;
300
301
  export declare var LakeFormationQuery: StaticStructureSchema;
302
+ export declare var LakehouseConfiguration: StaticStructureSchema;
301
303
  export declare var LimitExceededFault: StaticErrorSchema;
302
304
  export declare var ListRecommendationsMessage: StaticStructureSchema;
303
305
  export declare var ListRecommendationsResult: StaticStructureSchema;
@@ -327,6 +329,7 @@ export declare var ModifyEndpointAccessMessage: StaticStructureSchema;
327
329
  export declare var ModifyEventSubscriptionMessage: StaticStructureSchema;
328
330
  export declare var ModifyEventSubscriptionResult: StaticStructureSchema;
329
331
  export declare var ModifyIntegrationMessage: StaticStructureSchema;
332
+ export declare var ModifyLakehouseConfigurationMessage: StaticStructureSchema;
330
333
  export declare var ModifyRedshiftIdcApplicationMessage: StaticStructureSchema;
331
334
  export declare var ModifyRedshiftIdcApplicationResult: StaticStructureSchema;
332
335
  export declare var ModifyScheduledActionMessage: StaticStructureSchema;
@@ -536,6 +539,7 @@ export declare var RecommendationList: StaticListSchema;
536
539
  export declare var RecommendedActionList: StaticListSchema;
537
540
  export declare var RecurringChargeList: StaticListSchema;
538
541
  export declare var RedshiftIdcApplicationList: StaticListSchema;
542
+ export declare var RedshiftServiceIntegrations: StaticListSchema;
539
543
  export declare var ReferenceLinkList: StaticListSchema;
540
544
  export declare var ReservedNodeConfigurationOptionList: StaticListSchema;
541
545
  export declare var ReservedNodeExchangeStatusList: StaticListSchema;
@@ -575,6 +579,7 @@ export declare var VpcSecurityGroupMembershipList: StaticListSchema;
575
579
  export declare var EncryptionContextMap: number;
576
580
  export declare var LakeFormationScopeUnion: StaticStructureSchema;
577
581
  export declare var NamespaceIdentifierUnion: StaticStructureSchema;
582
+ export declare var RedshiftScopeUnion: StaticStructureSchema;
578
583
  export declare var S3AccessGrantsScopeUnion: StaticStructureSchema;
579
584
  export declare var ServiceIntegrationsUnion: StaticStructureSchema;
580
585
  export declare var AcceptReservedNodeExchange: StaticOperationSchema;
@@ -696,6 +701,7 @@ export declare var ModifyCustomDomainAssociation: StaticOperationSchema;
696
701
  export declare var ModifyEndpointAccess: StaticOperationSchema;
697
702
  export declare var ModifyEventSubscription: StaticOperationSchema;
698
703
  export declare var ModifyIntegration: StaticOperationSchema;
704
+ export declare var ModifyLakehouseConfiguration: StaticOperationSchema;
699
705
  export declare var ModifyRedshiftIdcApplication: StaticOperationSchema;
700
706
  export declare var ModifyScheduledAction: StaticOperationSchema;
701
707
  export declare var ModifySnapshotCopyRetentionPeriod: StaticOperationSchema;
@@ -475,6 +475,10 @@ import {
475
475
  ModifyIntegrationCommandInput,
476
476
  ModifyIntegrationCommandOutput,
477
477
  } from "./commands/ModifyIntegrationCommand";
478
+ import {
479
+ ModifyLakehouseConfigurationCommandInput,
480
+ ModifyLakehouseConfigurationCommandOutput,
481
+ } from "./commands/ModifyLakehouseConfigurationCommand";
478
482
  import {
479
483
  ModifyRedshiftIdcApplicationCommandInput,
480
484
  ModifyRedshiftIdcApplicationCommandOutput,
@@ -2164,6 +2168,19 @@ export interface Redshift {
2164
2168
  options: __HttpHandlerOptions,
2165
2169
  cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
2166
2170
  ): void;
2171
+ modifyLakehouseConfiguration(
2172
+ args: ModifyLakehouseConfigurationCommandInput,
2173
+ options?: __HttpHandlerOptions
2174
+ ): Promise<ModifyLakehouseConfigurationCommandOutput>;
2175
+ modifyLakehouseConfiguration(
2176
+ args: ModifyLakehouseConfigurationCommandInput,
2177
+ cb: (err: any, data?: ModifyLakehouseConfigurationCommandOutput) => void
2178
+ ): void;
2179
+ modifyLakehouseConfiguration(
2180
+ args: ModifyLakehouseConfigurationCommandInput,
2181
+ options: __HttpHandlerOptions,
2182
+ cb: (err: any, data?: ModifyLakehouseConfigurationCommandOutput) => void
2183
+ ): void;
2167
2184
  modifyRedshiftIdcApplication(
2168
2185
  args: ModifyRedshiftIdcApplicationCommandInput,
2169
2186
  options?: __HttpHandlerOptions
@@ -524,6 +524,10 @@ import {
524
524
  ModifyIntegrationCommandInput,
525
525
  ModifyIntegrationCommandOutput,
526
526
  } from "./commands/ModifyIntegrationCommand";
527
+ import {
528
+ ModifyLakehouseConfigurationCommandInput,
529
+ ModifyLakehouseConfigurationCommandOutput,
530
+ } from "./commands/ModifyLakehouseConfigurationCommand";
527
531
  import {
528
532
  ModifyRedshiftIdcApplicationCommandInput,
529
533
  ModifyRedshiftIdcApplicationCommandOutput,
@@ -735,6 +739,7 @@ export type ServiceInputTypes =
735
739
  | ModifyEndpointAccessCommandInput
736
740
  | ModifyEventSubscriptionCommandInput
737
741
  | ModifyIntegrationCommandInput
742
+ | ModifyLakehouseConfigurationCommandInput
738
743
  | ModifyRedshiftIdcApplicationCommandInput
739
744
  | ModifyScheduledActionCommandInput
740
745
  | ModifySnapshotCopyRetentionPeriodCommandInput
@@ -876,6 +881,7 @@ export type ServiceOutputTypes =
876
881
  | ModifyEndpointAccessCommandOutput
877
882
  | ModifyEventSubscriptionCommandOutput
878
883
  | ModifyIntegrationCommandOutput
884
+ | ModifyLakehouseConfigurationCommandOutput
879
885
  | ModifyRedshiftIdcApplicationCommandOutput
880
886
  | ModifyScheduledActionCommandOutput
881
887
  | ModifySnapshotCopyRetentionPeriodCommandOutput
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { LakehouseConfiguration } from "../models/models_0";
4
+ import { ModifyLakehouseConfigurationMessage } from "../models/models_1";
5
+ import {
6
+ RedshiftClientResolvedConfig,
7
+ ServiceInputTypes,
8
+ ServiceOutputTypes,
9
+ } from "../RedshiftClient";
10
+ export { __MetadataBearer };
11
+ export { $Command };
12
+ export interface ModifyLakehouseConfigurationCommandInput
13
+ extends ModifyLakehouseConfigurationMessage {}
14
+ export interface ModifyLakehouseConfigurationCommandOutput
15
+ extends LakehouseConfiguration,
16
+ __MetadataBearer {}
17
+ declare const ModifyLakehouseConfigurationCommand_base: {
18
+ new (
19
+ input: ModifyLakehouseConfigurationCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ModifyLakehouseConfigurationCommandInput,
22
+ ModifyLakehouseConfigurationCommandOutput,
23
+ RedshiftClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ input: ModifyLakehouseConfigurationCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ModifyLakehouseConfigurationCommandInput,
31
+ ModifyLakehouseConfigurationCommandOutput,
32
+ RedshiftClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class ModifyLakehouseConfigurationCommand extends ModifyLakehouseConfigurationCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: ModifyLakehouseConfigurationMessage;
42
+ output: LakehouseConfiguration;
43
+ };
44
+ sdk: {
45
+ input: ModifyLakehouseConfigurationCommandInput;
46
+ output: ModifyLakehouseConfigurationCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ModifyRedshiftIdcApplicationMessage,
5
5
  ModifyRedshiftIdcApplicationResult,
6
- } from "../models/models_0";
6
+ } from "../models/models_1";
7
7
  import {
8
8
  RedshiftClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ModifyScheduledActionMessage,
5
- ScheduledAction,
6
- } from "../models/models_0";
3
+ import { ScheduledAction } from "../models/models_0";
4
+ import { ModifyScheduledActionMessage } from "../models/models_1";
7
5
  import {
8
6
  RedshiftClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -117,6 +117,7 @@ export * from "./ModifyCustomDomainAssociationCommand";
117
117
  export * from "./ModifyEndpointAccessCommand";
118
118
  export * from "./ModifyEventSubscriptionCommand";
119
119
  export * from "./ModifyIntegrationCommand";
120
+ export * from "./ModifyLakehouseConfigurationCommand";
120
121
  export * from "./ModifyRedshiftIdcApplicationCommand";
121
122
  export * from "./ModifyScheduledActionCommand";
122
123
  export * from "./ModifySnapshotCopyRetentionPeriodCommand";
@@ -10,6 +10,12 @@ export declare const ActionType: {
10
10
  readonly RESTORE_CLUSTER: "restore-cluster";
11
11
  };
12
12
  export type ActionType = (typeof ActionType)[keyof typeof ActionType];
13
+ export declare const ApplicationType: {
14
+ readonly LAKEHOUSE: "Lakehouse";
15
+ readonly NONE: "None";
16
+ };
17
+ export type ApplicationType =
18
+ (typeof ApplicationType)[keyof typeof ApplicationType];
13
19
  export declare const AquaConfigurationStatus: {
14
20
  readonly AUTO: "auto";
15
21
  readonly DISABLED: "disabled";
@@ -65,6 +71,12 @@ export declare const ParameterApplyType: {
65
71
  };
66
72
  export type ParameterApplyType =
67
73
  (typeof ParameterApplyType)[keyof typeof ParameterApplyType];
74
+ export declare const ServiceAuthorization: {
75
+ readonly DISABLED: "Disabled";
76
+ readonly ENABLED: "Enabled";
77
+ };
78
+ export type ServiceAuthorization =
79
+ (typeof ServiceAuthorization)[keyof typeof ServiceAuthorization];
68
80
  export declare const ZeroETLIntegrationStatus: {
69
81
  readonly ACTIVE: "active";
70
82
  readonly CREATING: "creating";
@@ -76,12 +88,6 @@ export declare const ZeroETLIntegrationStatus: {
76
88
  };
77
89
  export type ZeroETLIntegrationStatus =
78
90
  (typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
79
- export declare const ServiceAuthorization: {
80
- readonly DISABLED: "Disabled";
81
- readonly ENABLED: "Enabled";
82
- };
83
- export type ServiceAuthorization =
84
- (typeof ServiceAuthorization)[keyof typeof ServiceAuthorization];
85
91
  export declare const ScheduledActionState: {
86
92
  readonly ACTIVE: "ACTIVE";
87
93
  readonly DISABLED: "DISABLED";
@@ -236,6 +242,18 @@ export declare const ImpactRankingType: {
236
242
  };
237
243
  export type ImpactRankingType =
238
244
  (typeof ImpactRankingType)[keyof typeof ImpactRankingType];
245
+ export declare const LakehouseIdcRegistration: {
246
+ readonly ASSOCIATE: "Associate";
247
+ readonly DISASSOCIATE: "Disassociate";
248
+ };
249
+ export type LakehouseIdcRegistration =
250
+ (typeof LakehouseIdcRegistration)[keyof typeof LakehouseIdcRegistration];
251
+ export declare const LakehouseRegistration: {
252
+ readonly DEREGISTER: "Deregister";
253
+ readonly REGISTER: "Register";
254
+ };
255
+ export type LakehouseRegistration =
256
+ (typeof LakehouseRegistration)[keyof typeof LakehouseRegistration];
239
257
  export declare const RecommendedActionType: {
240
258
  readonly CLI: "CLI";
241
259
  readonly SQL: "SQL";
@@ -449,6 +449,16 @@ export declare class InvalidAuthenticationProfileRequestFault extends __BaseExce
449
449
  >
450
450
  );
451
451
  }
452
+ export declare class DependentServiceAccessDeniedFault extends __BaseException {
453
+ readonly name: "DependentServiceAccessDeniedFault";
454
+ readonly $fault: "client";
455
+ constructor(
456
+ opts: __ExceptionOptionType<
457
+ DependentServiceAccessDeniedFault,
458
+ __BaseException
459
+ >
460
+ );
461
+ }
452
462
  export declare class HsmClientCertificateNotFoundFault extends __BaseException {
453
463
  readonly name: "HsmClientCertificateNotFoundFault";
454
464
  readonly $fault: "client";
@@ -762,16 +772,6 @@ export declare class IntegrationTargetNotFoundFault extends __BaseException {
762
772
  opts: __ExceptionOptionType<IntegrationTargetNotFoundFault, __BaseException>
763
773
  );
764
774
  }
765
- export declare class DependentServiceAccessDeniedFault extends __BaseException {
766
- readonly name: "DependentServiceAccessDeniedFault";
767
- readonly $fault: "client";
768
- constructor(
769
- opts: __ExceptionOptionType<
770
- DependentServiceAccessDeniedFault,
771
- __BaseException
772
- >
773
- );
774
- }
775
775
  export declare class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
776
776
  readonly name: "RedshiftIdcApplicationAlreadyExistsFault";
777
777
  readonly $fault: "client";
@@ -1,5 +1,6 @@
1
1
  import {
2
2
  ActionType,
3
+ ApplicationType,
3
4
  AquaConfigurationStatus,
4
5
  AquaStatus,
5
6
  AuthorizationStatus,
@@ -461,6 +462,8 @@ export interface Cluster {
461
462
  IpAddressType?: string | undefined;
462
463
  MultiAZ?: string | undefined;
463
464
  MultiAZSecondary?: SecondaryClusterInfo | undefined;
465
+ LakehouseRegistrationStatus?: string | undefined;
466
+ CatalogArn?: string | undefined;
464
467
  }
465
468
  export interface ClusterCredentials {
466
469
  DbUser?: string | undefined;
@@ -552,6 +555,9 @@ export interface ClusterVersionsMessage {
552
555
  Marker?: string | undefined;
553
556
  ClusterVersions?: ClusterVersion[] | undefined;
554
557
  }
558
+ export interface Connect {
559
+ Authorization: ServiceAuthorization | undefined;
560
+ }
555
561
  export interface CopyClusterSnapshotMessage {
556
562
  SourceSnapshotIdentifier: string | undefined;
557
563
  SourceSnapshotClusterIdentifier?: string | undefined;
@@ -609,6 +615,7 @@ export interface CreateClusterMessage {
609
615
  IpAddressType?: string | undefined;
610
616
  MultiAZ?: boolean | undefined;
611
617
  RedshiftIdcApplicationArn?: string | undefined;
618
+ CatalogName?: string | undefined;
612
619
  }
613
620
  export interface CreateClusterResult {
614
621
  Cluster?: Cluster | undefined;
@@ -781,6 +788,23 @@ export declare namespace LakeFormationScopeUnion {
781
788
  _: (name: string, value: any) => T;
782
789
  }
783
790
  }
791
+ export type RedshiftScopeUnion =
792
+ | RedshiftScopeUnion.ConnectMember
793
+ | RedshiftScopeUnion.$UnknownMember;
794
+ export declare namespace RedshiftScopeUnion {
795
+ interface ConnectMember {
796
+ Connect: Connect;
797
+ $unknown?: never;
798
+ }
799
+ interface $UnknownMember {
800
+ Connect?: never;
801
+ $unknown: [string, any];
802
+ }
803
+ interface Visitor<T> {
804
+ Connect: (value: Connect) => T;
805
+ _: (name: string, value: any) => T;
806
+ }
807
+ }
784
808
  export interface ReadWriteAccess {
785
809
  Authorization: ServiceAuthorization | undefined;
786
810
  }
@@ -803,27 +827,38 @@ export declare namespace S3AccessGrantsScopeUnion {
803
827
  }
804
828
  export type ServiceIntegrationsUnion =
805
829
  | ServiceIntegrationsUnion.LakeFormationMember
830
+ | ServiceIntegrationsUnion.RedshiftMember
806
831
  | ServiceIntegrationsUnion.S3AccessGrantsMember
807
832
  | ServiceIntegrationsUnion.$UnknownMember;
808
833
  export declare namespace ServiceIntegrationsUnion {
809
834
  interface LakeFormationMember {
810
835
  LakeFormation: LakeFormationScopeUnion[];
811
836
  S3AccessGrants?: never;
837
+ Redshift?: never;
812
838
  $unknown?: never;
813
839
  }
814
840
  interface S3AccessGrantsMember {
815
841
  LakeFormation?: never;
816
842
  S3AccessGrants: S3AccessGrantsScopeUnion[];
843
+ Redshift?: never;
844
+ $unknown?: never;
845
+ }
846
+ interface RedshiftMember {
847
+ LakeFormation?: never;
848
+ S3AccessGrants?: never;
849
+ Redshift: RedshiftScopeUnion[];
817
850
  $unknown?: never;
818
851
  }
819
852
  interface $UnknownMember {
820
853
  LakeFormation?: never;
821
854
  S3AccessGrants?: never;
855
+ Redshift?: never;
822
856
  $unknown: [string, any];
823
857
  }
824
858
  interface Visitor<T> {
825
859
  LakeFormation: (value: LakeFormationScopeUnion[]) => T;
826
860
  S3AccessGrants: (value: S3AccessGrantsScopeUnion[]) => T;
861
+ Redshift: (value: RedshiftScopeUnion[]) => T;
827
862
  _: (name: string, value: any) => T;
828
863
  }
829
864
  }
@@ -835,6 +870,7 @@ export interface CreateRedshiftIdcApplicationMessage {
835
870
  IamRoleArn: string | undefined;
836
871
  AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
837
872
  ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
873
+ ApplicationType?: ApplicationType | undefined;
838
874
  Tags?: Tag[] | undefined;
839
875
  SsoTagKeys?: string[] | undefined;
840
876
  }
@@ -849,6 +885,7 @@ export interface RedshiftIdcApplication {
849
885
  IdcOnboardStatus?: string | undefined;
850
886
  AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
851
887
  ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
888
+ ApplicationType?: ApplicationType | undefined;
852
889
  Tags?: Tag[] | undefined;
853
890
  SsoTagKeys?: string[] | undefined;
854
891
  }
@@ -1658,6 +1695,12 @@ export interface ResourcePolicy {
1658
1695
  export interface GetResourcePolicyResult {
1659
1696
  ResourcePolicy?: ResourcePolicy | undefined;
1660
1697
  }
1698
+ export interface LakehouseConfiguration {
1699
+ ClusterIdentifier?: string | undefined;
1700
+ LakehouseIdcApplicationArn?: string | undefined;
1701
+ LakehouseRegistrationStatus?: string | undefined;
1702
+ CatalogArn?: string | undefined;
1703
+ }
1661
1704
  export interface ListRecommendationsMessage {
1662
1705
  ClusterIdentifier?: string | undefined;
1663
1706
  NamespaceArn?: string | undefined;
@@ -1825,24 +1868,3 @@ export interface ModifyIntegrationMessage {
1825
1868
  Description?: string | undefined;
1826
1869
  IntegrationName?: string | undefined;
1827
1870
  }
1828
- export interface ModifyRedshiftIdcApplicationMessage {
1829
- RedshiftIdcApplicationArn: string | undefined;
1830
- IdentityNamespace?: string | undefined;
1831
- IamRoleArn?: string | undefined;
1832
- IdcDisplayName?: string | undefined;
1833
- AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
1834
- ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
1835
- }
1836
- export interface ModifyRedshiftIdcApplicationResult {
1837
- RedshiftIdcApplication?: RedshiftIdcApplication | undefined;
1838
- }
1839
- export interface ModifyScheduledActionMessage {
1840
- ScheduledActionName: string | undefined;
1841
- TargetAction?: ScheduledActionType | undefined;
1842
- Schedule?: string | undefined;
1843
- IamRole?: string | undefined;
1844
- ScheduledActionDescription?: string | undefined;
1845
- StartTime?: Date | undefined;
1846
- EndTime?: Date | undefined;
1847
- Enable?: boolean | undefined;
1848
- }
@@ -1,19 +1,54 @@
1
1
  import {
2
2
  AquaConfigurationStatus,
3
+ LakehouseIdcRegistration,
4
+ LakehouseRegistration,
3
5
  NamespaceRegistrationStatus,
4
6
  PartnerIntegrationStatus,
5
7
  UsageLimitBreachAction,
6
8
  } from "./enums";
7
9
  import {
10
+ AuthorizedTokenIssuer,
8
11
  Cluster,
9
12
  ClusterSecurityGroup,
10
13
  NamespaceIdentifierUnion,
11
14
  Parameter,
15
+ RedshiftIdcApplication,
12
16
  ReservedNode,
13
17
  ResourcePolicy,
18
+ ScheduledActionType,
19
+ ServiceIntegrationsUnion,
14
20
  Snapshot,
15
21
  TableRestoreStatus,
16
22
  } from "./models_0";
23
+ export interface ModifyLakehouseConfigurationMessage {
24
+ ClusterIdentifier: string | undefined;
25
+ LakehouseRegistration?: LakehouseRegistration | undefined;
26
+ CatalogName?: string | undefined;
27
+ LakehouseIdcRegistration?: LakehouseIdcRegistration | undefined;
28
+ LakehouseIdcApplicationArn?: string | undefined;
29
+ DryRun?: boolean | undefined;
30
+ }
31
+ export interface ModifyRedshiftIdcApplicationMessage {
32
+ RedshiftIdcApplicationArn: string | undefined;
33
+ IdentityNamespace?: string | undefined;
34
+ IamRoleArn?: string | undefined;
35
+ IdcDisplayName?: string | undefined;
36
+ AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
37
+ ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
38
+ }
39
+ export interface ModifyRedshiftIdcApplicationResult {
40
+ RedshiftIdcApplication?: RedshiftIdcApplication | undefined;
41
+ }
42
+ export interface ModifyScheduledActionMessage {
43
+ ScheduledActionName: string | undefined;
44
+ TargetAction?: ScheduledActionType | undefined;
45
+ Schedule?: string | undefined;
46
+ IamRole?: string | undefined;
47
+ ScheduledActionDescription?: string | undefined;
48
+ StartTime?: Date | undefined;
49
+ EndTime?: Date | undefined;
50
+ Enable?: boolean | undefined;
51
+ }
17
52
  export interface ModifySnapshotCopyRetentionPeriodMessage {
18
53
  ClusterIdentifier: string | undefined;
19
54
  RetentionPeriod: number | undefined;
@@ -110,6 +145,8 @@ export interface RestoreFromClusterSnapshotMessage {
110
145
  MasterPasswordSecretKmsKeyId?: string | undefined;
111
146
  IpAddressType?: string | undefined;
112
147
  MultiAZ?: boolean | undefined;
148
+ CatalogName?: string | undefined;
149
+ RedshiftIdcApplicationArn?: string | undefined;
113
150
  }
114
151
  export interface RestoreFromClusterSnapshotResult {
115
152
  Cluster?: Cluster | undefined;