@aws-sdk/client-redshift 3.428.0 → 3.430.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/dist-cjs/commands/CreateClusterCommand.js +3 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +2 -1
- package/dist-cjs/commands/DescribeClustersCommand.js +2 -1
- package/dist-cjs/commands/DisableSnapshotCopyCommand.js +2 -1
- package/dist-cjs/commands/EnableSnapshotCopyCommand.js +2 -1
- package/dist-cjs/commands/ModifyClusterCommand.js +3 -2
- package/dist-cjs/commands/ModifyClusterDbRevisionCommand.js +2 -1
- package/dist-cjs/commands/ModifyClusterIamRolesCommand.js +2 -1
- package/dist-cjs/commands/ModifyClusterMaintenanceCommand.js +2 -1
- package/dist-cjs/commands/ModifySnapshotCopyRetentionPeriodCommand.js +2 -1
- package/dist-cjs/commands/PauseClusterCommand.js +2 -1
- package/dist-cjs/commands/RebootClusterCommand.js +2 -1
- package/dist-cjs/commands/ResizeClusterCommand.js +2 -1
- package/dist-cjs/commands/RestoreFromClusterSnapshotCommand.js +2 -1
- package/dist-cjs/commands/ResumeClusterCommand.js +2 -1
- package/dist-cjs/commands/RotateEncryptionKeyCommand.js +2 -1
- package/dist-cjs/models/models_0.js +33 -1
- package/dist-cjs/models/models_1.js +73 -1
- package/dist-cjs/protocols/Aws_query.js +30 -0
- package/dist-es/commands/CreateClusterCommand.js +3 -2
- package/dist-es/commands/DeleteClusterCommand.js +2 -1
- package/dist-es/commands/DescribeClustersCommand.js +2 -1
- package/dist-es/commands/DisableSnapshotCopyCommand.js +2 -1
- package/dist-es/commands/EnableSnapshotCopyCommand.js +2 -1
- package/dist-es/commands/ModifyClusterCommand.js +3 -2
- package/dist-es/commands/ModifyClusterDbRevisionCommand.js +2 -1
- package/dist-es/commands/ModifyClusterIamRolesCommand.js +2 -1
- package/dist-es/commands/ModifyClusterMaintenanceCommand.js +2 -1
- package/dist-es/commands/ModifySnapshotCopyRetentionPeriodCommand.js +2 -1
- package/dist-es/commands/PauseClusterCommand.js +2 -1
- package/dist-es/commands/RebootClusterCommand.js +2 -1
- package/dist-es/commands/ResizeClusterCommand.js +2 -1
- package/dist-es/commands/RestoreFromClusterSnapshotCommand.js +2 -1
- package/dist-es/commands/ResumeClusterCommand.js +2 -1
- package/dist-es/commands/RotateEncryptionKeyCommand.js +2 -1
- package/dist-es/models/models_0.js +26 -0
- package/dist-es/models/models_1.js +58 -0
- package/dist-es/protocols/Aws_query.js +30 -0
- package/dist-types/commands/AuthorizeSnapshotAccessCommand.d.ts +2 -0
- package/dist-types/commands/CopyClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +5 -1
- package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -0
- package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/DescribeClusterSnapshotsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +2 -0
- package/dist-types/commands/DescribeCustomDomainAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -0
- package/dist-types/commands/EnableSnapshotCopyCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +4 -0
- package/dist-types/commands/ModifyClusterDbRevisionCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterMaintenanceCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/ModifySnapshotCopyRetentionPeriodCommand.d.ts +2 -0
- package/dist-types/commands/PauseClusterCommand.d.ts +2 -0
- package/dist-types/commands/RebootClusterCommand.d.ts +2 -0
- package/dist-types/commands/ResizeClusterCommand.d.ts +2 -0
- package/dist-types/commands/RestoreFromClusterSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/ResumeClusterCommand.d.ts +2 -0
- package/dist-types/commands/RevokeSnapshotAccessCommand.d.ts +2 -0
- package/dist-types/commands/RotateEncryptionKeyCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +84 -24
- package/dist-types/models/models_1.d.ts +104 -19
- package/dist-types/ts3.4/models/models_0.d.ts +46 -24
- package/dist-types/ts3.4/models/models_1.d.ts +65 -19
- package/package.json +11 -11
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { ModifyClusterDbRevisionResultFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_ModifyClusterDbRevisionCommand, se_ModifyClusterDbRevisionCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ModifyClusterDbRevisionCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class ModifyClusterDbRevisionCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: ModifyClusterDbRevisionResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "ModifyClusterDbRevision",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { ModifyClusterIamRolesResultFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_ModifyClusterIamRolesCommand, se_ModifyClusterIamRolesCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ModifyClusterIamRolesCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class ModifyClusterIamRolesCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: ModifyClusterIamRolesResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "ModifyClusterIamRoles",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { ModifyClusterMaintenanceResultFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_ModifyClusterMaintenanceCommand, se_ModifyClusterMaintenanceCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ModifyClusterMaintenanceCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class ModifyClusterMaintenanceCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: ModifyClusterMaintenanceResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "ModifyClusterMaintenance",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { ModifySnapshotCopyRetentionPeriodResultFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_ModifySnapshotCopyRetentionPeriodCommand, se_ModifySnapshotCopyRetentionPeriodCommand, } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ModifySnapshotCopyRetentionPeriodCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class ModifySnapshotCopyRetentionPeriodCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: ModifySnapshotCopyRetentionPeriodResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "ModifySnapshotCopyRetentionPeriod",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { PauseClusterResultFilterSensitiveLog } from "../models/models_1";
|
|
5
6
|
import { de_PauseClusterCommand, se_PauseClusterCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class PauseClusterCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class PauseClusterCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: PauseClusterResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "PauseCluster",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { RebootClusterResultFilterSensitiveLog } from "../models/models_1";
|
|
5
6
|
import { de_RebootClusterCommand, se_RebootClusterCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class RebootClusterCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class RebootClusterCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: RebootClusterResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "RebootCluster",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { ResizeClusterResultFilterSensitiveLog } from "../models/models_1";
|
|
5
6
|
import { de_ResizeClusterCommand, se_ResizeClusterCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ResizeClusterCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class ResizeClusterCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: ResizeClusterResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "ResizeCluster",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { RestoreFromClusterSnapshotResultFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_RestoreFromClusterSnapshotCommand, se_RestoreFromClusterSnapshotCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class RestoreFromClusterSnapshotCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class RestoreFromClusterSnapshotCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: RestoreFromClusterSnapshotResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "RestoreFromClusterSnapshot",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { ResumeClusterResultFilterSensitiveLog } from "../models/models_1";
|
|
5
6
|
import { de_ResumeClusterCommand, se_ResumeClusterCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ResumeClusterCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class ResumeClusterCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: ResumeClusterResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "ResumeCluster",
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { RotateEncryptionKeyResultFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_RotateEncryptionKeyCommand, se_RotateEncryptionKeyCommand } from "../protocols/Aws_query";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class RotateEncryptionKeyCommand extends $Command {
|
|
@@ -29,7 +30,7 @@ export class RotateEncryptionKeyCommand extends $Command {
|
|
|
29
30
|
clientName,
|
|
30
31
|
commandName,
|
|
31
32
|
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
33
|
+
outputFilterSensitiveLog: RotateEncryptionKeyResultFilterSensitiveLog,
|
|
33
34
|
[SMITHY_CONTEXT_KEY]: {
|
|
34
35
|
service: "RedshiftServiceVersion20121201",
|
|
35
36
|
operation: "RotateEncryptionKey",
|
|
@@ -1399,6 +1399,16 @@ export const SortByOrder = {
|
|
|
1399
1399
|
ASCENDING: "ASC",
|
|
1400
1400
|
DESCENDING: "DESC",
|
|
1401
1401
|
};
|
|
1402
|
+
export const PendingModifiedValuesFilterSensitiveLog = (obj) => ({
|
|
1403
|
+
...obj,
|
|
1404
|
+
...(obj.MasterUserPassword && { MasterUserPassword: SENSITIVE_STRING }),
|
|
1405
|
+
});
|
|
1406
|
+
export const ClusterFilterSensitiveLog = (obj) => ({
|
|
1407
|
+
...obj,
|
|
1408
|
+
...(obj.PendingModifiedValues && {
|
|
1409
|
+
PendingModifiedValues: PendingModifiedValuesFilterSensitiveLog(obj.PendingModifiedValues),
|
|
1410
|
+
}),
|
|
1411
|
+
});
|
|
1402
1412
|
export const ClusterCredentialsFilterSensitiveLog = (obj) => ({
|
|
1403
1413
|
...obj,
|
|
1404
1414
|
...(obj.DbPassword && { DbPassword: SENSITIVE_STRING }),
|
|
@@ -1407,3 +1417,19 @@ export const ClusterExtendedCredentialsFilterSensitiveLog = (obj) => ({
|
|
|
1407
1417
|
...obj,
|
|
1408
1418
|
...(obj.DbPassword && { DbPassword: SENSITIVE_STRING }),
|
|
1409
1419
|
});
|
|
1420
|
+
export const ClustersMessageFilterSensitiveLog = (obj) => ({
|
|
1421
|
+
...obj,
|
|
1422
|
+
...(obj.Clusters && { Clusters: obj.Clusters.map((item) => ClusterFilterSensitiveLog(item)) }),
|
|
1423
|
+
});
|
|
1424
|
+
export const CreateClusterMessageFilterSensitiveLog = (obj) => ({
|
|
1425
|
+
...obj,
|
|
1426
|
+
...(obj.MasterUserPassword && { MasterUserPassword: SENSITIVE_STRING }),
|
|
1427
|
+
});
|
|
1428
|
+
export const CreateClusterResultFilterSensitiveLog = (obj) => ({
|
|
1429
|
+
...obj,
|
|
1430
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
1431
|
+
});
|
|
1432
|
+
export const DeleteClusterResultFilterSensitiveLog = (obj) => ({
|
|
1433
|
+
...obj,
|
|
1434
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
1435
|
+
});
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
import { ClusterFilterSensitiveLog, } from "./models_0";
|
|
1
3
|
import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
2
4
|
export const SourceType = {
|
|
3
5
|
cluster: "cluster",
|
|
@@ -283,3 +285,59 @@ export class ReservedNodeQuotaExceededFault extends __BaseException {
|
|
|
283
285
|
Object.setPrototypeOf(this, ReservedNodeQuotaExceededFault.prototype);
|
|
284
286
|
}
|
|
285
287
|
}
|
|
288
|
+
export const DisableSnapshotCopyResultFilterSensitiveLog = (obj) => ({
|
|
289
|
+
...obj,
|
|
290
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
291
|
+
});
|
|
292
|
+
export const EnableSnapshotCopyResultFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
295
|
+
});
|
|
296
|
+
export const ModifyClusterMessageFilterSensitiveLog = (obj) => ({
|
|
297
|
+
...obj,
|
|
298
|
+
...(obj.MasterUserPassword && { MasterUserPassword: SENSITIVE_STRING }),
|
|
299
|
+
});
|
|
300
|
+
export const ModifyClusterResultFilterSensitiveLog = (obj) => ({
|
|
301
|
+
...obj,
|
|
302
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
303
|
+
});
|
|
304
|
+
export const ModifyClusterDbRevisionResultFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
307
|
+
});
|
|
308
|
+
export const ModifyClusterIamRolesResultFilterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
311
|
+
});
|
|
312
|
+
export const ModifyClusterMaintenanceResultFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
315
|
+
});
|
|
316
|
+
export const ModifySnapshotCopyRetentionPeriodResultFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
319
|
+
});
|
|
320
|
+
export const PauseClusterResultFilterSensitiveLog = (obj) => ({
|
|
321
|
+
...obj,
|
|
322
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
323
|
+
});
|
|
324
|
+
export const RebootClusterResultFilterSensitiveLog = (obj) => ({
|
|
325
|
+
...obj,
|
|
326
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
327
|
+
});
|
|
328
|
+
export const ResizeClusterResultFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
331
|
+
});
|
|
332
|
+
export const RestoreFromClusterSnapshotResultFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
335
|
+
});
|
|
336
|
+
export const ResumeClusterResultFilterSensitiveLog = (obj) => ({
|
|
337
|
+
...obj,
|
|
338
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
339
|
+
});
|
|
340
|
+
export const RotateEncryptionKeyResultFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
...(obj.Cluster && { Cluster: ClusterFilterSensitiveLog(obj.Cluster) }),
|
|
343
|
+
});
|
|
@@ -7609,6 +7609,12 @@ const se_CreateClusterMessage = (input, context) => {
|
|
|
7609
7609
|
if (input.LoadSampleData != null) {
|
|
7610
7610
|
entries["LoadSampleData"] = input.LoadSampleData;
|
|
7611
7611
|
}
|
|
7612
|
+
if (input.ManageMasterPassword != null) {
|
|
7613
|
+
entries["ManageMasterPassword"] = input.ManageMasterPassword;
|
|
7614
|
+
}
|
|
7615
|
+
if (input.MasterPasswordSecretKmsKeyId != null) {
|
|
7616
|
+
entries["MasterPasswordSecretKmsKeyId"] = input.MasterPasswordSecretKmsKeyId;
|
|
7617
|
+
}
|
|
7612
7618
|
return entries;
|
|
7613
7619
|
};
|
|
7614
7620
|
const se_CreateClusterParameterGroupMessage = (input, context) => {
|
|
@@ -9355,6 +9361,12 @@ const se_ModifyClusterMessage = (input, context) => {
|
|
|
9355
9361
|
if (input.Port != null) {
|
|
9356
9362
|
entries["Port"] = input.Port;
|
|
9357
9363
|
}
|
|
9364
|
+
if (input.ManageMasterPassword != null) {
|
|
9365
|
+
entries["ManageMasterPassword"] = input.ManageMasterPassword;
|
|
9366
|
+
}
|
|
9367
|
+
if (input.MasterPasswordSecretKmsKeyId != null) {
|
|
9368
|
+
entries["MasterPasswordSecretKmsKeyId"] = input.MasterPasswordSecretKmsKeyId;
|
|
9369
|
+
}
|
|
9358
9370
|
return entries;
|
|
9359
9371
|
};
|
|
9360
9372
|
const se_ModifyClusterParameterGroupMessage = (input, context) => {
|
|
@@ -9859,6 +9871,12 @@ const se_RestoreFromClusterSnapshotMessage = (input, context) => {
|
|
|
9859
9871
|
if (input.Encrypted != null) {
|
|
9860
9872
|
entries["Encrypted"] = input.Encrypted;
|
|
9861
9873
|
}
|
|
9874
|
+
if (input.ManageMasterPassword != null) {
|
|
9875
|
+
entries["ManageMasterPassword"] = input.ManageMasterPassword;
|
|
9876
|
+
}
|
|
9877
|
+
if (input.MasterPasswordSecretKmsKeyId != null) {
|
|
9878
|
+
entries["MasterPasswordSecretKmsKeyId"] = input.MasterPasswordSecretKmsKeyId;
|
|
9879
|
+
}
|
|
9862
9880
|
return entries;
|
|
9863
9881
|
};
|
|
9864
9882
|
const se_RestoreTableFromClusterSnapshotMessage = (input, context) => {
|
|
@@ -10696,6 +10714,12 @@ const de_Cluster = (output, context) => {
|
|
|
10696
10714
|
if (output["CustomDomainCertificateExpiryDate"] !== undefined) {
|
|
10697
10715
|
contents.CustomDomainCertificateExpiryDate = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["CustomDomainCertificateExpiryDate"]));
|
|
10698
10716
|
}
|
|
10717
|
+
if (output["MasterPasswordSecretArn"] !== undefined) {
|
|
10718
|
+
contents.MasterPasswordSecretArn = __expectString(output["MasterPasswordSecretArn"]);
|
|
10719
|
+
}
|
|
10720
|
+
if (output["MasterPasswordSecretKmsKeyId"] !== undefined) {
|
|
10721
|
+
contents.MasterPasswordSecretKmsKeyId = __expectString(output["MasterPasswordSecretKmsKeyId"]);
|
|
10722
|
+
}
|
|
10699
10723
|
return contents;
|
|
10700
10724
|
};
|
|
10701
10725
|
const de_ClusterAlreadyExistsFault = (output, context) => {
|
|
@@ -13590,6 +13614,12 @@ const de_Snapshot = (output, context) => {
|
|
|
13590
13614
|
if (output["SnapshotRetentionStartTime"] !== undefined) {
|
|
13591
13615
|
contents.SnapshotRetentionStartTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["SnapshotRetentionStartTime"]));
|
|
13592
13616
|
}
|
|
13617
|
+
if (output["MasterPasswordSecretArn"] !== undefined) {
|
|
13618
|
+
contents.MasterPasswordSecretArn = __expectString(output["MasterPasswordSecretArn"]);
|
|
13619
|
+
}
|
|
13620
|
+
if (output["MasterPasswordSecretKmsKeyId"] !== undefined) {
|
|
13621
|
+
contents.MasterPasswordSecretKmsKeyId = __expectString(output["MasterPasswordSecretKmsKeyId"]);
|
|
13622
|
+
}
|
|
13593
13623
|
return contents;
|
|
13594
13624
|
};
|
|
13595
13625
|
const de_SnapshotCopyAlreadyDisabledFault = (output, context) => {
|
|
@@ -91,6 +91,8 @@ export interface AuthorizeSnapshotAccessCommandOutput extends AuthorizeSnapshotA
|
|
|
91
91
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
92
92
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
93
93
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
94
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
95
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
94
96
|
* // },
|
|
95
97
|
* // };
|
|
96
98
|
*
|
|
@@ -97,6 +97,8 @@ export interface CopyClusterSnapshotCommandOutput extends CopyClusterSnapshotRes
|
|
|
97
97
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
98
98
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
99
99
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
100
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
101
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
100
102
|
* // },
|
|
101
103
|
* // };
|
|
102
104
|
*
|
|
@@ -42,7 +42,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
42
42
|
* ClusterType: "STRING_VALUE",
|
|
43
43
|
* NodeType: "STRING_VALUE", // required
|
|
44
44
|
* MasterUsername: "STRING_VALUE", // required
|
|
45
|
-
* MasterUserPassword: "STRING_VALUE",
|
|
45
|
+
* MasterUserPassword: "STRING_VALUE",
|
|
46
46
|
* ClusterSecurityGroups: [ // ClusterSecurityGroupNameList
|
|
47
47
|
* "STRING_VALUE",
|
|
48
48
|
* ],
|
|
@@ -82,6 +82,8 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
82
82
|
* AquaConfigurationStatus: "enabled" || "disabled" || "auto",
|
|
83
83
|
* DefaultIamRoleArn: "STRING_VALUE",
|
|
84
84
|
* LoadSampleData: "STRING_VALUE",
|
|
85
|
+
* ManageMasterPassword: true || false,
|
|
86
|
+
* MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
85
87
|
* };
|
|
86
88
|
* const command = new CreateClusterCommand(input);
|
|
87
89
|
* const response = await client.send(command);
|
|
@@ -259,6 +261,8 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
259
261
|
* // CustomDomainName: "STRING_VALUE",
|
|
260
262
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
261
263
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
264
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
265
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
262
266
|
* // },
|
|
263
267
|
* // };
|
|
264
268
|
*
|
|
@@ -96,6 +96,8 @@ export interface CreateClusterSnapshotCommandOutput extends CreateClusterSnapsho
|
|
|
96
96
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
97
97
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
98
98
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
99
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
100
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
99
101
|
* // },
|
|
100
102
|
* // };
|
|
101
103
|
*
|
|
@@ -227,6 +227,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResult, __Metad
|
|
|
227
227
|
* // CustomDomainName: "STRING_VALUE",
|
|
228
228
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
229
229
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
230
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
231
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
230
232
|
* // },
|
|
231
233
|
* // };
|
|
232
234
|
*
|
|
@@ -90,6 +90,8 @@ export interface DeleteClusterSnapshotCommandOutput extends DeleteClusterSnapsho
|
|
|
90
90
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
91
91
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
92
92
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
93
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
94
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
93
95
|
* // },
|
|
94
96
|
* // };
|
|
95
97
|
*
|
|
@@ -118,6 +118,8 @@ export interface DescribeClusterSnapshotsCommandOutput extends SnapshotMessage,
|
|
|
118
118
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
119
119
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
120
120
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
121
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
122
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
121
123
|
* // },
|
|
122
124
|
* // ],
|
|
123
125
|
* // };
|
|
@@ -231,6 +231,8 @@ export interface DescribeClustersCommandOutput extends ClustersMessage, __Metada
|
|
|
231
231
|
* // CustomDomainName: "STRING_VALUE",
|
|
232
232
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
233
233
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
234
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
235
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
234
236
|
* // },
|
|
235
237
|
* // ],
|
|
236
238
|
* // };
|
|
@@ -23,7 +23,7 @@ export interface DescribeCustomDomainAssociationsCommandOutput extends CustomDom
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Contains information
|
|
26
|
+
* <p>Contains information about custom domain associations for a cluster.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -213,6 +213,8 @@ export interface DisableSnapshotCopyCommandOutput extends DisableSnapshotCopyRes
|
|
|
213
213
|
* // CustomDomainName: "STRING_VALUE",
|
|
214
214
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
215
215
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
216
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
217
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
216
218
|
* // },
|
|
217
219
|
* // };
|
|
218
220
|
*
|
|
@@ -214,6 +214,8 @@ export interface EnableSnapshotCopyCommandOutput extends EnableSnapshotCopyResul
|
|
|
214
214
|
* // CustomDomainName: "STRING_VALUE",
|
|
215
215
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
216
216
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
217
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
218
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
217
219
|
* // },
|
|
218
220
|
* // };
|
|
219
221
|
*
|
|
@@ -68,6 +68,8 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad
|
|
|
68
68
|
* AvailabilityZoneRelocation: true || false,
|
|
69
69
|
* AvailabilityZone: "STRING_VALUE",
|
|
70
70
|
* Port: Number("int"),
|
|
71
|
+
* ManageMasterPassword: true || false,
|
|
72
|
+
* MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
71
73
|
* };
|
|
72
74
|
* const command = new ModifyClusterCommand(input);
|
|
73
75
|
* const response = await client.send(command);
|
|
@@ -245,6 +247,8 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad
|
|
|
245
247
|
* // CustomDomainName: "STRING_VALUE",
|
|
246
248
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
247
249
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
250
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
251
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
248
252
|
* // },
|
|
249
253
|
* // };
|
|
250
254
|
*
|
|
@@ -211,6 +211,8 @@ export interface ModifyClusterDbRevisionCommandOutput extends ModifyClusterDbRev
|
|
|
211
211
|
* // CustomDomainName: "STRING_VALUE",
|
|
212
212
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
213
213
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
214
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
215
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
214
216
|
* // },
|
|
215
217
|
* // };
|
|
216
218
|
*
|
|
@@ -220,6 +220,8 @@ export interface ModifyClusterIamRolesCommandOutput extends ModifyClusterIamRole
|
|
|
220
220
|
* // CustomDomainName: "STRING_VALUE",
|
|
221
221
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
222
222
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
223
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
224
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
223
225
|
* // },
|
|
224
226
|
* // };
|
|
225
227
|
*
|
|
@@ -214,6 +214,8 @@ export interface ModifyClusterMaintenanceCommandOutput extends ModifyClusterMain
|
|
|
214
214
|
* // CustomDomainName: "STRING_VALUE",
|
|
215
215
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
216
216
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
217
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
218
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
217
219
|
* // },
|
|
218
220
|
* // };
|
|
219
221
|
*
|
|
@@ -86,6 +86,8 @@ export interface ModifyClusterSnapshotCommandOutput extends ModifyClusterSnapsho
|
|
|
86
86
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
87
87
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
88
88
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
89
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
90
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
89
91
|
* // },
|
|
90
92
|
* // };
|
|
91
93
|
*
|
|
@@ -217,6 +217,8 @@ export interface ModifySnapshotCopyRetentionPeriodCommandOutput extends ModifySn
|
|
|
217
217
|
* // CustomDomainName: "STRING_VALUE",
|
|
218
218
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
219
219
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
220
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
221
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
220
222
|
* // },
|
|
221
223
|
* // };
|
|
222
224
|
*
|
|
@@ -210,6 +210,8 @@ export interface PauseClusterCommandOutput extends PauseClusterResult, __Metadat
|
|
|
210
210
|
* // CustomDomainName: "STRING_VALUE",
|
|
211
211
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
212
212
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
213
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
214
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
213
215
|
* // },
|
|
214
216
|
* // };
|
|
215
217
|
*
|
|
@@ -216,6 +216,8 @@ export interface RebootClusterCommandOutput extends RebootClusterResult, __Metad
|
|
|
216
216
|
* // CustomDomainName: "STRING_VALUE",
|
|
217
217
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
218
218
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
219
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
220
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
219
221
|
* // },
|
|
220
222
|
* // };
|
|
221
223
|
*
|
|
@@ -258,6 +258,8 @@ export interface ResizeClusterCommandOutput extends ResizeClusterResult, __Metad
|
|
|
258
258
|
* // CustomDomainName: "STRING_VALUE",
|
|
259
259
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
260
260
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
261
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
262
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
261
263
|
* // },
|
|
262
264
|
* // };
|
|
263
265
|
*
|
|
@@ -81,6 +81,8 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus
|
|
|
81
81
|
* ReservedNodeId: "STRING_VALUE",
|
|
82
82
|
* TargetReservedNodeOfferingId: "STRING_VALUE",
|
|
83
83
|
* Encrypted: true || false,
|
|
84
|
+
* ManageMasterPassword: true || false,
|
|
85
|
+
* MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
84
86
|
* };
|
|
85
87
|
* const command = new RestoreFromClusterSnapshotCommand(input);
|
|
86
88
|
* const response = await client.send(command);
|
|
@@ -258,6 +260,8 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus
|
|
|
258
260
|
* // CustomDomainName: "STRING_VALUE",
|
|
259
261
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
260
262
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
263
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
264
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
261
265
|
* // },
|
|
262
266
|
* // };
|
|
263
267
|
*
|
|
@@ -210,6 +210,8 @@ export interface ResumeClusterCommandOutput extends ResumeClusterResult, __Metad
|
|
|
210
210
|
* // CustomDomainName: "STRING_VALUE",
|
|
211
211
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
212
212
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
213
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
214
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
213
215
|
* // },
|
|
214
216
|
* // };
|
|
215
217
|
*
|
|
@@ -92,6 +92,8 @@ export interface RevokeSnapshotAccessCommandOutput extends RevokeSnapshotAccessR
|
|
|
92
92
|
* // ManualSnapshotRetentionPeriod: Number("int"),
|
|
93
93
|
* // ManualSnapshotRemainingDays: Number("int"),
|
|
94
94
|
* // SnapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
95
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
96
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
95
97
|
* // },
|
|
96
98
|
* // };
|
|
97
99
|
*
|
|
@@ -209,6 +209,8 @@ export interface RotateEncryptionKeyCommandOutput extends RotateEncryptionKeyRes
|
|
|
209
209
|
* // CustomDomainName: "STRING_VALUE",
|
|
210
210
|
* // CustomDomainCertificateArn: "STRING_VALUE",
|
|
211
211
|
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
|
|
212
|
+
* // MasterPasswordSecretArn: "STRING_VALUE",
|
|
213
|
+
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
|
|
212
214
|
* // },
|
|
213
215
|
* // };
|
|
214
216
|
*
|