@aws-sdk/client-redshift 3.435.0 → 3.437.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 (52) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/Redshift.js +8 -0
  3. package/dist-cjs/commands/DeleteResourcePolicyCommand.js +51 -0
  4. package/dist-cjs/commands/DescribeInboundIntegrationsCommand.js +51 -0
  5. package/dist-cjs/commands/GetResourcePolicyCommand.js +51 -0
  6. package/dist-cjs/commands/PutResourcePolicyCommand.js +51 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +15 -2
  9. package/dist-cjs/models/models_1.js +36 -1
  10. package/dist-cjs/pagination/DescribeInboundIntegrationsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_query.js +378 -5
  13. package/dist-cjs/runtimeConfig.js +2 -0
  14. package/dist-cjs/runtimeConfig.shared.js +15 -13
  15. package/dist-es/Redshift.js +8 -0
  16. package/dist-es/commands/DeleteResourcePolicyCommand.js +47 -0
  17. package/dist-es/commands/DescribeInboundIntegrationsCommand.js +47 -0
  18. package/dist-es/commands/GetResourcePolicyCommand.js +47 -0
  19. package/dist-es/commands/PutResourcePolicyCommand.js +47 -0
  20. package/dist-es/commands/index.js +4 -0
  21. package/dist-es/models/models_0.js +12 -0
  22. package/dist-es/models/models_1.js +33 -0
  23. package/dist-es/pagination/DescribeInboundIntegrationsPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_query.js +366 -2
  26. package/dist-es/runtimeConfig.js +2 -0
  27. package/dist-es/runtimeConfig.shared.js +15 -13
  28. package/dist-types/Redshift.d.ts +28 -0
  29. package/dist-types/RedshiftClient.d.ts +6 -2
  30. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +77 -0
  31. package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +100 -0
  32. package/dist-types/commands/GetResourcePolicyCommand.d.ts +85 -0
  33. package/dist-types/commands/PutResourcePolicyCommand.d.ts +89 -0
  34. package/dist-types/commands/index.d.ts +4 -0
  35. package/dist-types/models/models_0.d.ts +22 -44
  36. package/dist-types/models/models_1.d.ts +254 -1
  37. package/dist-types/pagination/DescribeInboundIntegrationsPaginator.d.ts +7 -0
  38. package/dist-types/pagination/index.d.ts +1 -0
  39. package/dist-types/protocols/Aws_query.d.ts +36 -0
  40. package/dist-types/ts3.4/Redshift.d.ts +68 -0
  41. package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
  42. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +37 -0
  43. package/dist-types/ts3.4/commands/DescribeInboundIntegrationsCommand.d.ts +42 -0
  44. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +39 -0
  45. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +39 -0
  46. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +10 -10
  48. package/dist-types/ts3.4/models/models_1.d.ts +72 -1
  49. package/dist-types/ts3.4/pagination/DescribeInboundIntegrationsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  51. package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
  52. package/package.json +5 -4
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DescribeInboundIntegrationsMessage,
11
+ InboundIntegrationsMessage,
12
+ } from "../models/models_1";
13
+ import {
14
+ RedshiftClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../RedshiftClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeInboundIntegrationsCommandInput
20
+ extends DescribeInboundIntegrationsMessage {}
21
+ export interface DescribeInboundIntegrationsCommandOutput
22
+ extends InboundIntegrationsMessage,
23
+ __MetadataBearer {}
24
+ export declare class DescribeInboundIntegrationsCommand extends $Command<
25
+ DescribeInboundIntegrationsCommandInput,
26
+ DescribeInboundIntegrationsCommandOutput,
27
+ RedshiftClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeInboundIntegrationsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeInboundIntegrationsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: RedshiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DescribeInboundIntegrationsCommandInput,
38
+ DescribeInboundIntegrationsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GetResourcePolicyMessage,
11
+ GetResourcePolicyResult,
12
+ } from "../models/models_1";
13
+ import {
14
+ RedshiftClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../RedshiftClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetResourcePolicyCommandInput
20
+ extends GetResourcePolicyMessage {}
21
+ export interface GetResourcePolicyCommandOutput
22
+ extends GetResourcePolicyResult,
23
+ __MetadataBearer {}
24
+ export declare class GetResourcePolicyCommand extends $Command<
25
+ GetResourcePolicyCommandInput,
26
+ GetResourcePolicyCommandOutput,
27
+ RedshiftClientResolvedConfig
28
+ > {
29
+ readonly input: GetResourcePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetResourcePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: RedshiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ PutResourcePolicyMessage,
11
+ PutResourcePolicyResult,
12
+ } from "../models/models_1";
13
+ import {
14
+ RedshiftClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../RedshiftClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface PutResourcePolicyCommandInput
20
+ extends PutResourcePolicyMessage {}
21
+ export interface PutResourcePolicyCommandOutput
22
+ extends PutResourcePolicyResult,
23
+ __MetadataBearer {}
24
+ export declare class PutResourcePolicyCommand extends $Command<
25
+ PutResourcePolicyCommandInput,
26
+ PutResourcePolicyCommandOutput,
27
+ RedshiftClientResolvedConfig
28
+ > {
29
+ readonly input: PutResourcePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: PutResourcePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: RedshiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -38,6 +38,7 @@ export * from "./DeleteEventSubscriptionCommand";
38
38
  export * from "./DeleteHsmClientCertificateCommand";
39
39
  export * from "./DeleteHsmConfigurationCommand";
40
40
  export * from "./DeletePartnerCommand";
41
+ export * from "./DeleteResourcePolicyCommand";
41
42
  export * from "./DeleteScheduledActionCommand";
42
43
  export * from "./DeleteSnapshotCopyGrantCommand";
43
44
  export * from "./DeleteSnapshotScheduleCommand";
@@ -66,6 +67,7 @@ export * from "./DescribeEventSubscriptionsCommand";
66
67
  export * from "./DescribeEventsCommand";
67
68
  export * from "./DescribeHsmClientCertificatesCommand";
68
69
  export * from "./DescribeHsmConfigurationsCommand";
70
+ export * from "./DescribeInboundIntegrationsCommand";
69
71
  export * from "./DescribeLoggingStatusCommand";
70
72
  export * from "./DescribeNodeConfigurationOptionsCommand";
71
73
  export * from "./DescribeOrderableClusterOptionsCommand";
@@ -90,6 +92,7 @@ export * from "./GetClusterCredentialsCommand";
90
92
  export * from "./GetClusterCredentialsWithIAMCommand";
91
93
  export * from "./GetReservedNodeExchangeConfigurationOptionsCommand";
92
94
  export * from "./GetReservedNodeExchangeOfferingsCommand";
95
+ export * from "./GetResourcePolicyCommand";
93
96
  export * from "./ModifyAquaConfigurationCommand";
94
97
  export * from "./ModifyAuthenticationProfileCommand";
95
98
  export * from "./ModifyClusterCommand";
@@ -109,6 +112,7 @@ export * from "./ModifySnapshotScheduleCommand";
109
112
  export * from "./ModifyUsageLimitCommand";
110
113
  export * from "./PauseClusterCommand";
111
114
  export * from "./PurchaseReservedNodeOfferingCommand";
115
+ export * from "./PutResourcePolicyCommand";
112
116
  export * from "./RebootClusterCommand";
113
117
  export * from "./RejectDataShareCommand";
114
118
  export * from "./ResetClusterParameterGroupCommand";
@@ -986,6 +986,13 @@ export interface ClusterVersionsMessage {
986
986
  Marker?: string;
987
987
  ClusterVersions?: ClusterVersion[];
988
988
  }
989
+ export declare class ConflictPolicyUpdateFault extends __BaseException {
990
+ readonly name: "ConflictPolicyUpdateFault";
991
+ readonly $fault: "client";
992
+ constructor(
993
+ opts: __ExceptionOptionType<ConflictPolicyUpdateFault, __BaseException>
994
+ );
995
+ }
989
996
  export interface CopyClusterSnapshotMessage {
990
997
  SourceSnapshotIdentifier: string | undefined;
991
998
  SourceSnapshotClusterIdentifier?: string;
@@ -1832,6 +1839,9 @@ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
1832
1839
  >
1833
1840
  );
1834
1841
  }
1842
+ export interface DeleteResourcePolicyMessage {
1843
+ ResourceArn: string | undefined;
1844
+ }
1835
1845
  export interface DeleteScheduledActionMessage {
1836
1846
  ScheduledActionName: string | undefined;
1837
1847
  }
@@ -2069,16 +2079,6 @@ export interface EndpointAuthorizationList {
2069
2079
  export interface DescribeEventCategoriesMessage {
2070
2080
  SourceType?: string;
2071
2081
  }
2072
- export interface EventInfoMap {
2073
- EventId?: string;
2074
- EventCategories?: string[];
2075
- EventDescription?: string;
2076
- Severity?: string;
2077
- }
2078
- export interface EventCategoriesMap {
2079
- SourceType?: string;
2080
- Events?: EventInfoMap[];
2081
- }
2082
2082
  export declare const PendingModifiedValuesFilterSensitiveLog: (
2083
2083
  obj: PendingModifiedValues
2084
2084
  ) => any;
@@ -7,7 +7,6 @@ import {
7
7
  Cluster,
8
8
  ClusterSecurityGroup,
9
9
  ClusterSubnetGroup,
10
- EventCategoriesMap,
11
10
  EventSubscription,
12
11
  HsmClientCertificate,
13
12
  HsmConfiguration,
@@ -27,6 +26,16 @@ import {
27
26
  UsageLimitFeatureType,
28
27
  } from "./models_0";
29
28
  import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
29
+ export interface EventInfoMap {
30
+ EventId?: string;
31
+ EventCategories?: string[];
32
+ EventDescription?: string;
33
+ Severity?: string;
34
+ }
35
+ export interface EventCategoriesMap {
36
+ SourceType?: string;
37
+ Events?: EventInfoMap[];
38
+ }
30
39
  export interface EventCategoriesMessage {
31
40
  EventCategoriesMapList?: EventCategoriesMap[];
32
41
  }
@@ -93,6 +102,46 @@ export interface HsmConfigurationMessage {
93
102
  Marker?: string;
94
103
  HsmConfigurations?: HsmConfiguration[];
95
104
  }
105
+ export interface DescribeInboundIntegrationsMessage {
106
+ IntegrationArn?: string;
107
+ TargetArn?: string;
108
+ MaxRecords?: number;
109
+ Marker?: string;
110
+ }
111
+ export interface IntegrationError {
112
+ ErrorCode: string | undefined;
113
+ ErrorMessage?: string;
114
+ }
115
+ export declare const ZeroETLIntegrationStatus: {
116
+ readonly ACTIVE: "active";
117
+ readonly CREATING: "creating";
118
+ readonly DELETING: "deleting";
119
+ readonly FAILED: "failed";
120
+ readonly MODIFYING: "modifying";
121
+ readonly NEEDS_ATTENTION: "needs_attention";
122
+ readonly SYNCING: "syncing";
123
+ };
124
+ export type ZeroETLIntegrationStatus =
125
+ (typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
126
+ export interface InboundIntegration {
127
+ IntegrationArn?: string;
128
+ SourceArn?: string;
129
+ TargetArn?: string;
130
+ Status?: ZeroETLIntegrationStatus;
131
+ Errors?: IntegrationError[];
132
+ CreateTime?: Date;
133
+ }
134
+ export interface InboundIntegrationsMessage {
135
+ Marker?: string;
136
+ InboundIntegrations?: InboundIntegration[];
137
+ }
138
+ export declare class IntegrationNotFoundFault extends __BaseException {
139
+ readonly name: "IntegrationNotFoundFault";
140
+ readonly $fault: "client";
141
+ constructor(
142
+ opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>
143
+ );
144
+ }
96
145
  export interface DescribeLoggingStatusMessage {
97
146
  ClusterIdentifier: string | undefined;
98
147
  }
@@ -525,6 +574,21 @@ export interface GetReservedNodeExchangeOfferingsOutputMessage {
525
574
  Marker?: string;
526
575
  ReservedNodeOfferings?: ReservedNodeOffering[];
527
576
  }
577
+ export interface GetResourcePolicyMessage {
578
+ ResourceArn: string | undefined;
579
+ }
580
+ export interface ResourcePolicy {
581
+ ResourceArn?: string;
582
+ Policy?: string;
583
+ }
584
+ export interface GetResourcePolicyResult {
585
+ ResourcePolicy?: ResourcePolicy;
586
+ }
587
+ export declare class InvalidPolicyFault extends __BaseException {
588
+ readonly name: "InvalidPolicyFault";
589
+ readonly $fault: "client";
590
+ constructor(opts: __ExceptionOptionType<InvalidPolicyFault, __BaseException>);
591
+ }
528
592
  export declare class InProgressTableRestoreQuotaExceededFault extends __BaseException {
529
593
  readonly name: "InProgressTableRestoreQuotaExceededFault";
530
594
  readonly $fault: "client";
@@ -758,6 +822,13 @@ export declare class ReservedNodeQuotaExceededFault extends __BaseException {
758
822
  opts: __ExceptionOptionType<ReservedNodeQuotaExceededFault, __BaseException>
759
823
  );
760
824
  }
825
+ export interface PutResourcePolicyMessage {
826
+ ResourceArn: string | undefined;
827
+ Policy: string | undefined;
828
+ }
829
+ export interface PutResourcePolicyResult {
830
+ ResourcePolicy?: ResourcePolicy;
831
+ }
761
832
  export interface RebootClusterMessage {
762
833
  ClusterIdentifier: string | undefined;
763
834
  }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ DescribeInboundIntegrationsCommandInput,
4
+ DescribeInboundIntegrationsCommandOutput,
5
+ } from "../commands/DescribeInboundIntegrationsCommand";
6
+ import { RedshiftPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeInboundIntegrations(
8
+ config: RedshiftPaginationConfiguration,
9
+ input: DescribeInboundIntegrationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeInboundIntegrationsCommandOutput>;
@@ -19,6 +19,7 @@ export * from "./DescribeEventSubscriptionsPaginator";
19
19
  export * from "./DescribeEventsPaginator";
20
20
  export * from "./DescribeHsmClientCertificatesPaginator";
21
21
  export * from "./DescribeHsmConfigurationsPaginator";
22
+ export * from "./DescribeInboundIntegrationsPaginator";
22
23
  export * from "./DescribeNodeConfigurationOptionsPaginator";
23
24
  export * from "./DescribeOrderableClusterOptionsPaginator";
24
25
  export * from "./DescribeReservedNodeExchangeStatusPaginator";
@@ -163,6 +163,10 @@ import {
163
163
  DeletePartnerCommandInput,
164
164
  DeletePartnerCommandOutput,
165
165
  } from "../commands/DeletePartnerCommand";
166
+ import {
167
+ DeleteResourcePolicyCommandInput,
168
+ DeleteResourcePolicyCommandOutput,
169
+ } from "../commands/DeleteResourcePolicyCommand";
166
170
  import {
167
171
  DeleteScheduledActionCommandInput,
168
172
  DeleteScheduledActionCommandOutput,
@@ -275,6 +279,10 @@ import {
275
279
  DescribeHsmConfigurationsCommandInput,
276
280
  DescribeHsmConfigurationsCommandOutput,
277
281
  } from "../commands/DescribeHsmConfigurationsCommand";
282
+ import {
283
+ DescribeInboundIntegrationsCommandInput,
284
+ DescribeInboundIntegrationsCommandOutput,
285
+ } from "../commands/DescribeInboundIntegrationsCommand";
278
286
  import {
279
287
  DescribeLoggingStatusCommandInput,
280
288
  DescribeLoggingStatusCommandOutput,
@@ -371,6 +379,10 @@ import {
371
379
  GetReservedNodeExchangeOfferingsCommandInput,
372
380
  GetReservedNodeExchangeOfferingsCommandOutput,
373
381
  } from "../commands/GetReservedNodeExchangeOfferingsCommand";
382
+ import {
383
+ GetResourcePolicyCommandInput,
384
+ GetResourcePolicyCommandOutput,
385
+ } from "../commands/GetResourcePolicyCommand";
374
386
  import {
375
387
  ModifyAquaConfigurationCommandInput,
376
388
  ModifyAquaConfigurationCommandOutput,
@@ -447,6 +459,10 @@ import {
447
459
  PurchaseReservedNodeOfferingCommandInput,
448
460
  PurchaseReservedNodeOfferingCommandOutput,
449
461
  } from "../commands/PurchaseReservedNodeOfferingCommand";
462
+ import {
463
+ PutResourcePolicyCommandInput,
464
+ PutResourcePolicyCommandOutput,
465
+ } from "../commands/PutResourcePolicyCommand";
450
466
  import {
451
467
  RebootClusterCommandInput,
452
468
  RebootClusterCommandOutput,
@@ -655,6 +671,10 @@ export declare const se_DeletePartnerCommand: (
655
671
  input: DeletePartnerCommandInput,
656
672
  context: __SerdeContext
657
673
  ) => Promise<__HttpRequest>;
674
+ export declare const se_DeleteResourcePolicyCommand: (
675
+ input: DeleteResourcePolicyCommandInput,
676
+ context: __SerdeContext
677
+ ) => Promise<__HttpRequest>;
658
678
  export declare const se_DeleteScheduledActionCommand: (
659
679
  input: DeleteScheduledActionCommandInput,
660
680
  context: __SerdeContext
@@ -767,6 +787,10 @@ export declare const se_DescribeHsmConfigurationsCommand: (
767
787
  input: DescribeHsmConfigurationsCommandInput,
768
788
  context: __SerdeContext
769
789
  ) => Promise<__HttpRequest>;
790
+ export declare const se_DescribeInboundIntegrationsCommand: (
791
+ input: DescribeInboundIntegrationsCommandInput,
792
+ context: __SerdeContext
793
+ ) => Promise<__HttpRequest>;
770
794
  export declare const se_DescribeLoggingStatusCommand: (
771
795
  input: DescribeLoggingStatusCommandInput,
772
796
  context: __SerdeContext
@@ -863,6 +887,10 @@ export declare const se_GetReservedNodeExchangeOfferingsCommand: (
863
887
  input: GetReservedNodeExchangeOfferingsCommandInput,
864
888
  context: __SerdeContext
865
889
  ) => Promise<__HttpRequest>;
890
+ export declare const se_GetResourcePolicyCommand: (
891
+ input: GetResourcePolicyCommandInput,
892
+ context: __SerdeContext
893
+ ) => Promise<__HttpRequest>;
866
894
  export declare const se_ModifyAquaConfigurationCommand: (
867
895
  input: ModifyAquaConfigurationCommandInput,
868
896
  context: __SerdeContext
@@ -939,6 +967,10 @@ export declare const se_PurchaseReservedNodeOfferingCommand: (
939
967
  input: PurchaseReservedNodeOfferingCommandInput,
940
968
  context: __SerdeContext
941
969
  ) => Promise<__HttpRequest>;
970
+ export declare const se_PutResourcePolicyCommand: (
971
+ input: PutResourcePolicyCommandInput,
972
+ context: __SerdeContext
973
+ ) => Promise<__HttpRequest>;
942
974
  export declare const se_RebootClusterCommand: (
943
975
  input: RebootClusterCommandInput,
944
976
  context: __SerdeContext
@@ -1147,6 +1179,10 @@ export declare const de_DeletePartnerCommand: (
1147
1179
  output: __HttpResponse,
1148
1180
  context: __SerdeContext
1149
1181
  ) => Promise<DeletePartnerCommandOutput>;
1182
+ export declare const de_DeleteResourcePolicyCommand: (
1183
+ output: __HttpResponse,
1184
+ context: __SerdeContext
1185
+ ) => Promise<DeleteResourcePolicyCommandOutput>;
1150
1186
  export declare const de_DeleteScheduledActionCommand: (
1151
1187
  output: __HttpResponse,
1152
1188
  context: __SerdeContext
@@ -1259,6 +1295,10 @@ export declare const de_DescribeHsmConfigurationsCommand: (
1259
1295
  output: __HttpResponse,
1260
1296
  context: __SerdeContext
1261
1297
  ) => Promise<DescribeHsmConfigurationsCommandOutput>;
1298
+ export declare const de_DescribeInboundIntegrationsCommand: (
1299
+ output: __HttpResponse,
1300
+ context: __SerdeContext
1301
+ ) => Promise<DescribeInboundIntegrationsCommandOutput>;
1262
1302
  export declare const de_DescribeLoggingStatusCommand: (
1263
1303
  output: __HttpResponse,
1264
1304
  context: __SerdeContext
@@ -1355,6 +1395,10 @@ export declare const de_GetReservedNodeExchangeOfferingsCommand: (
1355
1395
  output: __HttpResponse,
1356
1396
  context: __SerdeContext
1357
1397
  ) => Promise<GetReservedNodeExchangeOfferingsCommandOutput>;
1398
+ export declare const de_GetResourcePolicyCommand: (
1399
+ output: __HttpResponse,
1400
+ context: __SerdeContext
1401
+ ) => Promise<GetResourcePolicyCommandOutput>;
1358
1402
  export declare const de_ModifyAquaConfigurationCommand: (
1359
1403
  output: __HttpResponse,
1360
1404
  context: __SerdeContext
@@ -1431,6 +1475,10 @@ export declare const de_PurchaseReservedNodeOfferingCommand: (
1431
1475
  output: __HttpResponse,
1432
1476
  context: __SerdeContext
1433
1477
  ) => Promise<PurchaseReservedNodeOfferingCommandOutput>;
1478
+ export declare const de_PutResourcePolicyCommand: (
1479
+ output: __HttpResponse,
1480
+ context: __SerdeContext
1481
+ ) => Promise<PutResourcePolicyCommandOutput>;
1434
1482
  export declare const de_RebootClusterCommand: (
1435
1483
  output: __HttpResponse,
1436
1484
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift",
3
3
  "description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
4
- "version": "3.435.0",
4
+ "version": "3.437.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,8 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.435.0",
25
- "@aws-sdk/credential-provider-node": "3.435.0",
24
+ "@aws-sdk/client-sts": "3.437.0",
25
+ "@aws-sdk/core": "3.436.0",
26
+ "@aws-sdk/credential-provider-node": "3.437.0",
26
27
  "@aws-sdk/middleware-host-header": "3.433.0",
27
28
  "@aws-sdk/middleware-logger": "3.433.0",
28
29
  "@aws-sdk/middleware-recursion-detection": "3.433.0",
@@ -32,7 +33,7 @@
32
33
  "@aws-sdk/types": "3.433.0",
33
34
  "@aws-sdk/util-endpoints": "3.433.0",
34
35
  "@aws-sdk/util-user-agent-browser": "3.433.0",
35
- "@aws-sdk/util-user-agent-node": "3.433.0",
36
+ "@aws-sdk/util-user-agent-node": "3.437.0",
36
37
  "@smithy/config-resolver": "^2.0.16",
37
38
  "@smithy/fetch-http-handler": "^2.2.4",
38
39
  "@smithy/hash-node": "^2.0.12",