@aws-sdk/client-redshift 3.48.0 → 3.52.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.
- package/CHANGELOG.md +35 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +10 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_query.js +10 -0
- package/dist-types/Redshift.d.ts +7 -5
- package/dist-types/commands/CreateSnapshotCopyGrantCommand.d.ts +2 -2
- package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -2
- package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +3 -1
- package/dist-types/models/models_0.d.ts +20 -9
- package/dist-types/models/models_1.d.ts +12 -9
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/dist-types/ts3.4/models/models_1.d.ts +2 -0
- package/package.json +41 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2022/02/18 ([#3335](https://github.com/aws/aws-sdk-js-v3/issues/3335)) ([717b06f](https://github.com/aws/aws-sdk-js-v3/commit/717b06fc43e9876a6f8040147b75ad5da38b1e0f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-redshift
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-redshift
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/client-redshift
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/client-redshift
|
|
@@ -721,6 +721,7 @@ var UsageLimitBreachAction;
|
|
|
721
721
|
var UsageLimitFeatureType;
|
|
722
722
|
(function (UsageLimitFeatureType) {
|
|
723
723
|
UsageLimitFeatureType["CONCURRENCY_SCALING"] = "concurrency-scaling";
|
|
724
|
+
UsageLimitFeatureType["CROSS_REGION_DATASHARING"] = "cross-region-datasharing";
|
|
724
725
|
UsageLimitFeatureType["SPECTRUM"] = "spectrum";
|
|
725
726
|
})(UsageLimitFeatureType = exports.UsageLimitFeatureType || (exports.UsageLimitFeatureType = {}));
|
|
726
727
|
var UsageLimitLimitType;
|
|
@@ -11127,6 +11127,9 @@ const serializeAws_queryAssociateDataShareConsumerMessage = (input, context) =>
|
|
|
11127
11127
|
if (input.ConsumerArn !== undefined && input.ConsumerArn !== null) {
|
|
11128
11128
|
entries["ConsumerArn"] = input.ConsumerArn;
|
|
11129
11129
|
}
|
|
11130
|
+
if (input.ConsumerRegion !== undefined && input.ConsumerRegion !== null) {
|
|
11131
|
+
entries["ConsumerRegion"] = input.ConsumerRegion;
|
|
11132
|
+
}
|
|
11130
11133
|
return entries;
|
|
11131
11134
|
};
|
|
11132
11135
|
const serializeAws_queryAttributeNameList = (input, context) => {
|
|
@@ -12617,6 +12620,9 @@ const serializeAws_queryDisassociateDataShareConsumerMessage = (input, context)
|
|
|
12617
12620
|
if (input.ConsumerArn !== undefined && input.ConsumerArn !== null) {
|
|
12618
12621
|
entries["ConsumerArn"] = input.ConsumerArn;
|
|
12619
12622
|
}
|
|
12623
|
+
if (input.ConsumerRegion !== undefined && input.ConsumerRegion !== null) {
|
|
12624
|
+
entries["ConsumerRegion"] = input.ConsumerRegion;
|
|
12625
|
+
}
|
|
12620
12626
|
return entries;
|
|
12621
12627
|
};
|
|
12622
12628
|
const serializeAws_queryEnableLoggingMessage = (input, context) => {
|
|
@@ -15055,6 +15061,7 @@ const deserializeAws_queryDataShareAssociation = (output, context) => {
|
|
|
15055
15061
|
const contents = {
|
|
15056
15062
|
ConsumerIdentifier: undefined,
|
|
15057
15063
|
Status: undefined,
|
|
15064
|
+
ConsumerRegion: undefined,
|
|
15058
15065
|
CreatedDate: undefined,
|
|
15059
15066
|
StatusChangeDate: undefined,
|
|
15060
15067
|
};
|
|
@@ -15064,6 +15071,9 @@ const deserializeAws_queryDataShareAssociation = (output, context) => {
|
|
|
15064
15071
|
if (output["Status"] !== undefined) {
|
|
15065
15072
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
15066
15073
|
}
|
|
15074
|
+
if (output["ConsumerRegion"] !== undefined) {
|
|
15075
|
+
contents.ConsumerRegion = smithy_client_1.expectString(output["ConsumerRegion"]);
|
|
15076
|
+
}
|
|
15067
15077
|
if (output["CreatedDate"] !== undefined) {
|
|
15068
15078
|
contents.CreatedDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["CreatedDate"]));
|
|
15069
15079
|
}
|
|
@@ -495,6 +495,7 @@ export var UsageLimitBreachAction;
|
|
|
495
495
|
export var UsageLimitFeatureType;
|
|
496
496
|
(function (UsageLimitFeatureType) {
|
|
497
497
|
UsageLimitFeatureType["CONCURRENCY_SCALING"] = "concurrency-scaling";
|
|
498
|
+
UsageLimitFeatureType["CROSS_REGION_DATASHARING"] = "cross-region-datasharing";
|
|
498
499
|
UsageLimitFeatureType["SPECTRUM"] = "spectrum";
|
|
499
500
|
})(UsageLimitFeatureType || (UsageLimitFeatureType = {}));
|
|
500
501
|
export var UsageLimitLimitType;
|
|
@@ -11589,6 +11589,9 @@ var serializeAws_queryAssociateDataShareConsumerMessage = function (input, conte
|
|
|
11589
11589
|
if (input.ConsumerArn !== undefined && input.ConsumerArn !== null) {
|
|
11590
11590
|
entries["ConsumerArn"] = input.ConsumerArn;
|
|
11591
11591
|
}
|
|
11592
|
+
if (input.ConsumerRegion !== undefined && input.ConsumerRegion !== null) {
|
|
11593
|
+
entries["ConsumerRegion"] = input.ConsumerRegion;
|
|
11594
|
+
}
|
|
11592
11595
|
return entries;
|
|
11593
11596
|
};
|
|
11594
11597
|
var serializeAws_queryAttributeNameList = function (input, context) {
|
|
@@ -13177,6 +13180,9 @@ var serializeAws_queryDisassociateDataShareConsumerMessage = function (input, co
|
|
|
13177
13180
|
if (input.ConsumerArn !== undefined && input.ConsumerArn !== null) {
|
|
13178
13181
|
entries["ConsumerArn"] = input.ConsumerArn;
|
|
13179
13182
|
}
|
|
13183
|
+
if (input.ConsumerRegion !== undefined && input.ConsumerRegion !== null) {
|
|
13184
|
+
entries["ConsumerRegion"] = input.ConsumerRegion;
|
|
13185
|
+
}
|
|
13180
13186
|
return entries;
|
|
13181
13187
|
};
|
|
13182
13188
|
var serializeAws_queryEnableLoggingMessage = function (input, context) {
|
|
@@ -15818,6 +15824,7 @@ var deserializeAws_queryDataShareAssociation = function (output, context) {
|
|
|
15818
15824
|
var contents = {
|
|
15819
15825
|
ConsumerIdentifier: undefined,
|
|
15820
15826
|
Status: undefined,
|
|
15827
|
+
ConsumerRegion: undefined,
|
|
15821
15828
|
CreatedDate: undefined,
|
|
15822
15829
|
StatusChangeDate: undefined,
|
|
15823
15830
|
};
|
|
@@ -15827,6 +15834,9 @@ var deserializeAws_queryDataShareAssociation = function (output, context) {
|
|
|
15827
15834
|
if (output["Status"] !== undefined) {
|
|
15828
15835
|
contents.Status = __expectString(output["Status"]);
|
|
15829
15836
|
}
|
|
15837
|
+
if (output["ConsumerRegion"] !== undefined) {
|
|
15838
|
+
contents.ConsumerRegion = __expectString(output["ConsumerRegion"]);
|
|
15839
|
+
}
|
|
15830
15840
|
if (output["CreatedDate"] !== undefined) {
|
|
15831
15841
|
contents.CreatedDate = __expectNonNull(__parseRfc3339DateTime(output["CreatedDate"]));
|
|
15832
15842
|
}
|
package/dist-types/Redshift.d.ts
CHANGED
|
@@ -376,8 +376,8 @@ export declare class Redshift extends RedshiftClient {
|
|
|
376
376
|
createScheduledAction(args: CreateScheduledActionCommandInput, cb: (err: any, data?: CreateScheduledActionCommandOutput) => void): void;
|
|
377
377
|
createScheduledAction(args: CreateScheduledActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduledActionCommandOutput) => void): void;
|
|
378
378
|
/**
|
|
379
|
-
* <p>Creates a snapshot copy grant that permits Amazon Redshift to use
|
|
380
|
-
*
|
|
379
|
+
* <p>Creates a snapshot copy grant that permits Amazon Redshift to use an encrypted symmetric key
|
|
380
|
+
* from Key Management Service (KMS) to encrypt copied snapshots in a
|
|
381
381
|
* destination region.</p>
|
|
382
382
|
* <p>
|
|
383
383
|
* For more information about managing snapshot copy grants, go to
|
|
@@ -980,9 +980,9 @@ export declare class Redshift extends RedshiftClient {
|
|
|
980
980
|
/**
|
|
981
981
|
* <p>Disables the automatic copying of snapshots from one region to another region for a
|
|
982
982
|
* specified cluster.</p>
|
|
983
|
-
* <p>If your cluster and its snapshots are encrypted using
|
|
983
|
+
* <p>If your cluster and its snapshots are encrypted using an encrypted symmetric key
|
|
984
984
|
* from Key Management Service, use <a>DeleteSnapshotCopyGrant</a> to delete the grant that
|
|
985
|
-
* grants Amazon Redshift permission to the
|
|
985
|
+
* grants Amazon Redshift permission to the key in the destination region. </p>
|
|
986
986
|
*/
|
|
987
987
|
disableSnapshotCopy(args: DisableSnapshotCopyCommandInput, options?: __HttpHandlerOptions): Promise<DisableSnapshotCopyCommandOutput>;
|
|
988
988
|
disableSnapshotCopy(args: DisableSnapshotCopyCommandInput, cb: (err: any, data?: DisableSnapshotCopyCommandOutput) => void): void;
|
|
@@ -1085,7 +1085,9 @@ export declare class Redshift extends RedshiftClient {
|
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>Modifies the list of Identity and Access Management (IAM) roles that can be
|
|
1087
1087
|
* used by the cluster to access other Amazon Web Services services.</p>
|
|
1088
|
-
* <p>
|
|
1088
|
+
* <p>The maximum number of IAM roles that you can associate is subject to a quota.
|
|
1089
|
+
* For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Quotas and limits</a>
|
|
1090
|
+
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
1089
1091
|
*/
|
|
1090
1092
|
modifyClusterIamRoles(args: ModifyClusterIamRolesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterIamRolesCommandOutput>;
|
|
1091
1093
|
modifyClusterIamRoles(args: ModifyClusterIamRolesCommandInput, cb: (err: any, data?: ModifyClusterIamRolesCommandOutput) => void): void;
|
|
@@ -7,8 +7,8 @@ export interface CreateSnapshotCopyGrantCommandInput extends CreateSnapshotCopyG
|
|
|
7
7
|
export interface CreateSnapshotCopyGrantCommandOutput extends CreateSnapshotCopyGrantResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a snapshot copy grant that permits Amazon Redshift to use
|
|
11
|
-
*
|
|
10
|
+
* <p>Creates a snapshot copy grant that permits Amazon Redshift to use an encrypted symmetric key
|
|
11
|
+
* from Key Management Service (KMS) to encrypt copied snapshots in a
|
|
12
12
|
* destination region.</p>
|
|
13
13
|
* <p>
|
|
14
14
|
* For more information about managing snapshot copy grants, go to
|
|
@@ -9,9 +9,9 @@ export interface DisableSnapshotCopyCommandOutput extends DisableSnapshotCopyRes
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Disables the automatic copying of snapshots from one region to another region for a
|
|
11
11
|
* specified cluster.</p>
|
|
12
|
-
* <p>If your cluster and its snapshots are encrypted using
|
|
12
|
+
* <p>If your cluster and its snapshots are encrypted using an encrypted symmetric key
|
|
13
13
|
* from Key Management Service, use <a>DeleteSnapshotCopyGrant</a> to delete the grant that
|
|
14
|
-
* grants Amazon Redshift permission to the
|
|
14
|
+
* grants Amazon Redshift permission to the key in the destination region. </p>
|
|
15
15
|
* @example
|
|
16
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
17
17
|
* ```javascript
|
|
@@ -9,7 +9,9 @@ export interface ModifyClusterIamRolesCommandOutput extends ModifyClusterIamRole
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Modifies the list of Identity and Access Management (IAM) roles that can be
|
|
11
11
|
* used by the cluster to access other Amazon Web Services services.</p>
|
|
12
|
-
* <p>
|
|
12
|
+
* <p>The maximum number of IAM roles that you can associate is subject to a quota.
|
|
13
|
+
* For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Quotas and limits</a>
|
|
14
|
+
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
13
15
|
* @example
|
|
14
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
17
|
* ```javascript
|
|
@@ -414,6 +414,10 @@ export interface AssociateDataShareConsumerMessage {
|
|
|
414
414
|
* datashare.</p>
|
|
415
415
|
*/
|
|
416
416
|
ConsumerArn?: string;
|
|
417
|
+
/**
|
|
418
|
+
* <p>From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.</p>
|
|
419
|
+
*/
|
|
420
|
+
ConsumerRegion?: string;
|
|
417
421
|
}
|
|
418
422
|
export declare namespace AssociateDataShareConsumerMessage {
|
|
419
423
|
/**
|
|
@@ -443,6 +447,10 @@ export interface DataShareAssociation {
|
|
|
443
447
|
* <p>The status of the datashare that is associated.</p>
|
|
444
448
|
*/
|
|
445
449
|
Status?: DataShareStatus | string;
|
|
450
|
+
/**
|
|
451
|
+
* <p>The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare.</p>
|
|
452
|
+
*/
|
|
453
|
+
ConsumerRegion?: string;
|
|
446
454
|
/**
|
|
447
455
|
* <p>The creation date of the datashare that is associated.</p>
|
|
448
456
|
*/
|
|
@@ -3247,8 +3255,8 @@ export interface CreateClusterMessage {
|
|
|
3247
3255
|
* <p>Must contain one number.</p>
|
|
3248
3256
|
* </li>
|
|
3249
3257
|
* <li>
|
|
3250
|
-
* <p>Can be any printable ASCII character (ASCII code 33
|
|
3251
|
-
* (single quote), " (double quote), \, /,
|
|
3258
|
+
* <p>Can be any printable ASCII character (ASCII code 33-126) except '
|
|
3259
|
+
* (single quote), " (double quote), \, /, or @.</p>
|
|
3252
3260
|
* </li>
|
|
3253
3261
|
* </ul>
|
|
3254
3262
|
*/
|
|
@@ -3429,9 +3437,10 @@ export interface CreateClusterMessage {
|
|
|
3429
3437
|
/**
|
|
3430
3438
|
* <p>A list of Identity and Access Management (IAM) roles that can be used by the
|
|
3431
3439
|
* cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon
|
|
3432
|
-
* Resource Name (ARN) format.
|
|
3433
|
-
*
|
|
3434
|
-
*
|
|
3440
|
+
* Resource Name (ARN) format. </p>
|
|
3441
|
+
* <p>The maximum number of IAM roles that you can associate is subject to a quota.
|
|
3442
|
+
* For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Quotas and limits</a>
|
|
3443
|
+
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
3435
3444
|
*/
|
|
3436
3445
|
IamRoles?: string[];
|
|
3437
3446
|
/**
|
|
@@ -4656,7 +4665,7 @@ export interface CreateSnapshotCopyGrantMessage {
|
|
|
4656
4665
|
*/
|
|
4657
4666
|
SnapshotCopyGrantName: string | undefined;
|
|
4658
4667
|
/**
|
|
4659
|
-
* <p>The unique identifier of the
|
|
4668
|
+
* <p>The unique identifier of the encrypted symmetric key to which to grant Amazon Redshift
|
|
4660
4669
|
* permission. If no key is specified, the default key is used.</p>
|
|
4661
4670
|
*/
|
|
4662
4671
|
KmsKeyId?: string;
|
|
@@ -4673,7 +4682,7 @@ export declare namespace CreateSnapshotCopyGrantMessage {
|
|
|
4673
4682
|
}
|
|
4674
4683
|
/**
|
|
4675
4684
|
* <p>The snapshot copy grant that grants Amazon Redshift permission to encrypt copied
|
|
4676
|
-
* snapshots with the specified
|
|
4685
|
+
* snapshots with the specified encrypted symmetric key from Amazon Web Services KMS in the destination
|
|
4677
4686
|
* region.</p>
|
|
4678
4687
|
* <p>
|
|
4679
4688
|
* For more information about managing snapshot copy grants, go to
|
|
@@ -4687,7 +4696,7 @@ export interface SnapshotCopyGrant {
|
|
|
4687
4696
|
*/
|
|
4688
4697
|
SnapshotCopyGrantName?: string;
|
|
4689
4698
|
/**
|
|
4690
|
-
* <p>The unique identifier of the
|
|
4699
|
+
* <p>The unique identifier of the encrypted symmetric key in Amazon Web Services KMS to which
|
|
4691
4700
|
* Amazon Redshift is granted permission.</p>
|
|
4692
4701
|
*/
|
|
4693
4702
|
KmsKeyId?: string;
|
|
@@ -4705,7 +4714,7 @@ export declare namespace SnapshotCopyGrant {
|
|
|
4705
4714
|
export interface CreateSnapshotCopyGrantResult {
|
|
4706
4715
|
/**
|
|
4707
4716
|
* <p>The snapshot copy grant that grants Amazon Redshift permission to encrypt copied
|
|
4708
|
-
* snapshots with the specified
|
|
4717
|
+
* snapshots with the specified encrypted symmetric key from Amazon Web Services KMS in the destination
|
|
4709
4718
|
* region.</p>
|
|
4710
4719
|
* <p>
|
|
4711
4720
|
* For more information about managing snapshot copy grants, go to
|
|
@@ -4877,6 +4886,7 @@ export declare enum UsageLimitBreachAction {
|
|
|
4877
4886
|
}
|
|
4878
4887
|
export declare enum UsageLimitFeatureType {
|
|
4879
4888
|
CONCURRENCY_SCALING = "concurrency-scaling",
|
|
4889
|
+
CROSS_REGION_DATASHARING = "cross-region-datasharing",
|
|
4880
4890
|
SPECTRUM = "spectrum"
|
|
4881
4891
|
}
|
|
4882
4892
|
export declare enum UsageLimitLimitType {
|
|
@@ -4901,6 +4911,7 @@ export interface CreateUsageLimitMessage {
|
|
|
4901
4911
|
* <p>The type of limit. Depending on the feature type, this can be based on a time duration or data size.
|
|
4902
4912
|
* If <code>FeatureType</code> is <code>spectrum</code>, then <code>LimitType</code> must be <code>data-scanned</code>.
|
|
4903
4913
|
* If <code>FeatureType</code> is <code>concurrency-scaling</code>, then <code>LimitType</code> must be <code>time</code>.
|
|
4914
|
+
* If <code>FeatureType</code> is <code>cross-region-datasharing</code>, then <code>LimitType</code> must be <code>data-scanned</code>.
|
|
4904
4915
|
* </p>
|
|
4905
4916
|
*/
|
|
4906
4917
|
LimitType: UsageLimitLimitType | string | undefined;
|
|
@@ -1328,6 +1328,10 @@ export interface DisassociateDataShareConsumerMessage {
|
|
|
1328
1328
|
* the datashare is removed from.</p>
|
|
1329
1329
|
*/
|
|
1330
1330
|
ConsumerArn?: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* <p>From a datashare consumer account, removes association of a datashare from all the existing and future namespaces in the specified Amazon Web Services Region.</p>
|
|
1333
|
+
*/
|
|
1334
|
+
ConsumerRegion?: string;
|
|
1331
1335
|
}
|
|
1332
1336
|
export declare namespace DisassociateDataShareConsumerMessage {
|
|
1333
1337
|
/**
|
|
@@ -1951,8 +1955,8 @@ export interface ModifyClusterMessage {
|
|
|
1951
1955
|
* <p>Must contain one number.</p>
|
|
1952
1956
|
* </li>
|
|
1953
1957
|
* <li>
|
|
1954
|
-
* <p>Can be any printable ASCII character (ASCII code 33
|
|
1955
|
-
* (single quote), " (double quote), \, /,
|
|
1958
|
+
* <p>Can be any printable ASCII character (ASCII code 33-126) except '
|
|
1959
|
+
* (single quote), " (double quote), \, /, or @.</p>
|
|
1956
1960
|
* </li>
|
|
1957
1961
|
* </ul>
|
|
1958
1962
|
*/
|
|
@@ -2189,13 +2193,11 @@ export interface ModifyClusterIamRolesMessage {
|
|
|
2189
2193
|
ClusterIdentifier: string | undefined;
|
|
2190
2194
|
/**
|
|
2191
2195
|
* <p>Zero or more IAM roles to associate with the cluster. The roles must be in their
|
|
2192
|
-
* Amazon Resource Name (ARN) format.
|
|
2193
|
-
* cluster in a single request.</p>
|
|
2196
|
+
* Amazon Resource Name (ARN) format. </p>
|
|
2194
2197
|
*/
|
|
2195
2198
|
AddIamRoles?: string[];
|
|
2196
2199
|
/**
|
|
2197
|
-
* <p>Zero or more IAM roles in ARN format to disassociate from the cluster.
|
|
2198
|
-
* disassociate up to 10 IAM roles from a single cluster in a single request.</p>
|
|
2200
|
+
* <p>Zero or more IAM roles in ARN format to disassociate from the cluster. </p>
|
|
2199
2201
|
*/
|
|
2200
2202
|
RemoveIamRoles?: string[];
|
|
2201
2203
|
/**
|
|
@@ -2953,9 +2955,10 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
2953
2955
|
/**
|
|
2954
2956
|
* <p>A list of Identity and Access Management (IAM) roles that can be used by the
|
|
2955
2957
|
* cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon
|
|
2956
|
-
* Resource Name (ARN) format.
|
|
2957
|
-
*
|
|
2958
|
-
*
|
|
2958
|
+
* Resource Name (ARN) format. </p>
|
|
2959
|
+
* <p>The maximum number of IAM roles that you can associate is subject to a quota.
|
|
2960
|
+
* For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Quotas and limits</a>
|
|
2961
|
+
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
2959
2962
|
*/
|
|
2960
2963
|
IamRoles?: string[];
|
|
2961
2964
|
/**
|
|
@@ -230,6 +230,8 @@ export interface AssociateDataShareConsumerMessage {
|
|
|
230
230
|
AssociateEntireAccount?: boolean;
|
|
231
231
|
|
|
232
232
|
ConsumerArn?: string;
|
|
233
|
+
|
|
234
|
+
ConsumerRegion?: string;
|
|
233
235
|
}
|
|
234
236
|
export declare namespace AssociateDataShareConsumerMessage {
|
|
235
237
|
|
|
@@ -250,6 +252,8 @@ export interface DataShareAssociation {
|
|
|
250
252
|
|
|
251
253
|
Status?: DataShareStatus | string;
|
|
252
254
|
|
|
255
|
+
ConsumerRegion?: string;
|
|
256
|
+
|
|
253
257
|
CreatedDate?: Date;
|
|
254
258
|
|
|
255
259
|
StatusChangeDate?: Date;
|
|
@@ -2326,6 +2330,7 @@ export declare enum UsageLimitBreachAction {
|
|
|
2326
2330
|
}
|
|
2327
2331
|
export declare enum UsageLimitFeatureType {
|
|
2328
2332
|
CONCURRENCY_SCALING = "concurrency-scaling",
|
|
2333
|
+
CROSS_REGION_DATASHARING = "cross-region-datasharing",
|
|
2329
2334
|
SPECTRUM = "spectrum"
|
|
2330
2335
|
}
|
|
2331
2336
|
export declare enum UsageLimitLimitType {
|
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.
|
|
4
|
+
"version": "3.52.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,44 +18,50 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.52.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.52.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.52.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.52.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.52.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.52.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.52.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.52.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.52.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.52.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.52.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.52.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.52.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.52.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.52.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.52.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.52.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.52.0",
|
|
39
|
+
"@aws-sdk/types": "3.52.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.52.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.52.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.52.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.52.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.52.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.52.0",
|
|
52
52
|
"entities": "2.2.0",
|
|
53
53
|
"fast-xml-parser": "3.19.0",
|
|
54
54
|
"tslib": "^2.3.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
-
"@
|
|
57
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
58
|
+
"@tsconfig/recommended": "1.0.1",
|
|
59
|
+
"@types/node": "^12.7.5",
|
|
60
|
+
"concurrently": "7.0.0",
|
|
61
|
+
"downlevel-dts": "0.7.0",
|
|
62
|
+
"rimraf": "3.0.2",
|
|
63
|
+
"typedoc": "0.19.2",
|
|
64
|
+
"typescript": "~4.3.5"
|
|
59
65
|
},
|
|
60
66
|
"engines": {
|
|
61
67
|
"node": ">=12.0.0"
|