@aws-sdk/client-kms 3.181.0 → 3.183.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 +8 -0
- package/dist-es/KMS.js +202 -209
- package/dist-es/KMSClient.js +22 -28
- package/dist-es/commands/CancelKeyDeletionCommand.js +21 -28
- package/dist-es/commands/ConnectCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/CreateAliasCommand.js +22 -29
- package/dist-es/commands/CreateCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/CreateGrantCommand.js +21 -28
- package/dist-es/commands/CreateKeyCommand.js +21 -28
- package/dist-es/commands/DecryptCommand.js +21 -28
- package/dist-es/commands/DeleteAliasCommand.js +22 -29
- package/dist-es/commands/DeleteCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/DeleteImportedKeyMaterialCommand.js +22 -29
- package/dist-es/commands/DescribeCustomKeyStoresCommand.js +21 -28
- package/dist-es/commands/DescribeKeyCommand.js +21 -28
- package/dist-es/commands/DisableKeyCommand.js +22 -29
- package/dist-es/commands/DisableKeyRotationCommand.js +22 -29
- package/dist-es/commands/DisconnectCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/EnableKeyCommand.js +22 -29
- package/dist-es/commands/EnableKeyRotationCommand.js +22 -29
- package/dist-es/commands/EncryptCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyPairCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +21 -28
- package/dist-es/commands/GenerateMacCommand.js +21 -28
- package/dist-es/commands/GenerateRandomCommand.js +21 -28
- package/dist-es/commands/GetKeyPolicyCommand.js +21 -28
- package/dist-es/commands/GetKeyRotationStatusCommand.js +21 -28
- package/dist-es/commands/GetParametersForImportCommand.js +21 -28
- package/dist-es/commands/GetPublicKeyCommand.js +21 -28
- package/dist-es/commands/ImportKeyMaterialCommand.js +21 -28
- package/dist-es/commands/ListAliasesCommand.js +21 -28
- package/dist-es/commands/ListGrantsCommand.js +21 -28
- package/dist-es/commands/ListKeyPoliciesCommand.js +21 -28
- package/dist-es/commands/ListKeysCommand.js +21 -28
- package/dist-es/commands/ListResourceTagsCommand.js +21 -28
- package/dist-es/commands/ListRetirableGrantsCommand.js +21 -28
- package/dist-es/commands/PutKeyPolicyCommand.js +22 -29
- package/dist-es/commands/ReEncryptCommand.js +21 -28
- package/dist-es/commands/ReplicateKeyCommand.js +21 -28
- package/dist-es/commands/RetireGrantCommand.js +22 -29
- package/dist-es/commands/RevokeGrantCommand.js +22 -29
- package/dist-es/commands/ScheduleKeyDeletionCommand.js +21 -28
- package/dist-es/commands/SignCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +22 -29
- package/dist-es/commands/UntagResourceCommand.js +22 -29
- package/dist-es/commands/UpdateAliasCommand.js +22 -29
- package/dist-es/commands/UpdateCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/UpdateKeyDescriptionCommand.js +22 -29
- package/dist-es/commands/UpdatePrimaryRegionCommand.js +22 -29
- package/dist-es/commands/VerifyCommand.js +21 -28
- package/dist-es/commands/VerifyMacCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/KMSServiceException.js +5 -10
- package/dist-es/models/models_0.js +699 -502
- package/dist-es/pagination/DescribeCustomKeyStoresPaginator.js +25 -68
- package/dist-es/pagination/ListAliasesPaginator.js +25 -68
- package/dist-es/pagination/ListGrantsPaginator.js +25 -68
- package/dist-es/pagination/ListKeyPoliciesPaginator.js +25 -68
- package/dist-es/pagination/ListKeysPaginator.js +25 -68
- package/dist-es/pagination/ListResourceTagsPaginator.js +25 -68
- package/dist-es/pagination/ListRetirableGrantsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +3725 -4852
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { KMSServiceException as __BaseException } from "./KMSServiceException";
|
|
4
3
|
export var AlgorithmSpec;
|
|
@@ -7,162 +6,162 @@ export var AlgorithmSpec;
|
|
|
7
6
|
AlgorithmSpec["RSAES_OAEP_SHA_256"] = "RSAES_OAEP_SHA_256";
|
|
8
7
|
AlgorithmSpec["RSAES_PKCS1_V1_5"] = "RSAES_PKCS1_V1_5";
|
|
9
8
|
})(AlgorithmSpec || (AlgorithmSpec = {}));
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
}
|
|
165
|
-
|
|
9
|
+
export class AlreadyExistsException extends __BaseException {
|
|
10
|
+
constructor(opts) {
|
|
11
|
+
super({
|
|
12
|
+
name: "AlreadyExistsException",
|
|
13
|
+
$fault: "client",
|
|
14
|
+
...opts,
|
|
15
|
+
});
|
|
16
|
+
this.name = "AlreadyExistsException";
|
|
17
|
+
this.$fault = "client";
|
|
18
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export class DependencyTimeoutException extends __BaseException {
|
|
22
|
+
constructor(opts) {
|
|
23
|
+
super({
|
|
24
|
+
name: "DependencyTimeoutException",
|
|
25
|
+
$fault: "server",
|
|
26
|
+
...opts,
|
|
27
|
+
});
|
|
28
|
+
this.name = "DependencyTimeoutException";
|
|
29
|
+
this.$fault = "server";
|
|
30
|
+
Object.setPrototypeOf(this, DependencyTimeoutException.prototype);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
export class InvalidArnException extends __BaseException {
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InvalidArnException",
|
|
37
|
+
$fault: "client",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
this.name = "InvalidArnException";
|
|
41
|
+
this.$fault = "client";
|
|
42
|
+
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
export class KMSInternalException extends __BaseException {
|
|
46
|
+
constructor(opts) {
|
|
47
|
+
super({
|
|
48
|
+
name: "KMSInternalException",
|
|
49
|
+
$fault: "server",
|
|
50
|
+
...opts,
|
|
51
|
+
});
|
|
52
|
+
this.name = "KMSInternalException";
|
|
53
|
+
this.$fault = "server";
|
|
54
|
+
Object.setPrototypeOf(this, KMSInternalException.prototype);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
export class KMSInvalidStateException extends __BaseException {
|
|
58
|
+
constructor(opts) {
|
|
59
|
+
super({
|
|
60
|
+
name: "KMSInvalidStateException",
|
|
61
|
+
$fault: "client",
|
|
62
|
+
...opts,
|
|
63
|
+
});
|
|
64
|
+
this.name = "KMSInvalidStateException";
|
|
65
|
+
this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
export class NotFoundException extends __BaseException {
|
|
70
|
+
constructor(opts) {
|
|
71
|
+
super({
|
|
72
|
+
name: "NotFoundException",
|
|
73
|
+
$fault: "client",
|
|
74
|
+
...opts,
|
|
75
|
+
});
|
|
76
|
+
this.name = "NotFoundException";
|
|
77
|
+
this.$fault = "client";
|
|
78
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
export class CloudHsmClusterInUseException extends __BaseException {
|
|
82
|
+
constructor(opts) {
|
|
83
|
+
super({
|
|
84
|
+
name: "CloudHsmClusterInUseException",
|
|
85
|
+
$fault: "client",
|
|
86
|
+
...opts,
|
|
87
|
+
});
|
|
88
|
+
this.name = "CloudHsmClusterInUseException";
|
|
89
|
+
this.$fault = "client";
|
|
90
|
+
Object.setPrototypeOf(this, CloudHsmClusterInUseException.prototype);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
export class CloudHsmClusterInvalidConfigurationException extends __BaseException {
|
|
94
|
+
constructor(opts) {
|
|
95
|
+
super({
|
|
96
|
+
name: "CloudHsmClusterInvalidConfigurationException",
|
|
97
|
+
$fault: "client",
|
|
98
|
+
...opts,
|
|
99
|
+
});
|
|
100
|
+
this.name = "CloudHsmClusterInvalidConfigurationException";
|
|
101
|
+
this.$fault = "client";
|
|
102
|
+
Object.setPrototypeOf(this, CloudHsmClusterInvalidConfigurationException.prototype);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
export class CloudHsmClusterNotActiveException extends __BaseException {
|
|
106
|
+
constructor(opts) {
|
|
107
|
+
super({
|
|
108
|
+
name: "CloudHsmClusterNotActiveException",
|
|
109
|
+
$fault: "client",
|
|
110
|
+
...opts,
|
|
111
|
+
});
|
|
112
|
+
this.name = "CloudHsmClusterNotActiveException";
|
|
113
|
+
this.$fault = "client";
|
|
114
|
+
Object.setPrototypeOf(this, CloudHsmClusterNotActiveException.prototype);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
export class CloudHsmClusterNotFoundException extends __BaseException {
|
|
118
|
+
constructor(opts) {
|
|
119
|
+
super({
|
|
120
|
+
name: "CloudHsmClusterNotFoundException",
|
|
121
|
+
$fault: "client",
|
|
122
|
+
...opts,
|
|
123
|
+
});
|
|
124
|
+
this.name = "CloudHsmClusterNotFoundException";
|
|
125
|
+
this.$fault = "client";
|
|
126
|
+
Object.setPrototypeOf(this, CloudHsmClusterNotFoundException.prototype);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
export class CloudHsmClusterNotRelatedException extends __BaseException {
|
|
130
|
+
constructor(opts) {
|
|
131
|
+
super({
|
|
132
|
+
name: "CloudHsmClusterNotRelatedException",
|
|
133
|
+
$fault: "client",
|
|
134
|
+
...opts,
|
|
135
|
+
});
|
|
136
|
+
this.name = "CloudHsmClusterNotRelatedException";
|
|
137
|
+
this.$fault = "client";
|
|
138
|
+
Object.setPrototypeOf(this, CloudHsmClusterNotRelatedException.prototype);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
export class CustomKeyStoreInvalidStateException extends __BaseException {
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "CustomKeyStoreInvalidStateException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
this.name = "CustomKeyStoreInvalidStateException";
|
|
149
|
+
this.$fault = "client";
|
|
150
|
+
Object.setPrototypeOf(this, CustomKeyStoreInvalidStateException.prototype);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
export class CustomKeyStoreNotFoundException extends __BaseException {
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "CustomKeyStoreNotFoundException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
this.name = "CustomKeyStoreNotFoundException";
|
|
161
|
+
this.$fault = "client";
|
|
162
|
+
Object.setPrototypeOf(this, CustomKeyStoreNotFoundException.prototype);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
166
165
|
export var ConnectionErrorCodeType;
|
|
167
166
|
(function (ConnectionErrorCodeType) {
|
|
168
167
|
ConnectionErrorCodeType["CLUSTER_NOT_FOUND"] = "CLUSTER_NOT_FOUND";
|
|
@@ -184,54 +183,54 @@ export var ConnectionStateType;
|
|
|
184
183
|
ConnectionStateType["DISCONNECTING"] = "DISCONNECTING";
|
|
185
184
|
ConnectionStateType["FAILED"] = "FAILED";
|
|
186
185
|
})(ConnectionStateType || (ConnectionStateType = {}));
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
234
|
-
|
|
186
|
+
export class InvalidAliasNameException extends __BaseException {
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "InvalidAliasNameException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
this.name = "InvalidAliasNameException";
|
|
194
|
+
this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(this, InvalidAliasNameException.prototype);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
export class LimitExceededException extends __BaseException {
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "LimitExceededException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
this.name = "LimitExceededException";
|
|
206
|
+
this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
export class CustomKeyStoreNameInUseException extends __BaseException {
|
|
211
|
+
constructor(opts) {
|
|
212
|
+
super({
|
|
213
|
+
name: "CustomKeyStoreNameInUseException",
|
|
214
|
+
$fault: "client",
|
|
215
|
+
...opts,
|
|
216
|
+
});
|
|
217
|
+
this.name = "CustomKeyStoreNameInUseException";
|
|
218
|
+
this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(this, CustomKeyStoreNameInUseException.prototype);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
export class IncorrectTrustAnchorException extends __BaseException {
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "IncorrectTrustAnchorException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
this.name = "IncorrectTrustAnchorException";
|
|
230
|
+
this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(this, IncorrectTrustAnchorException.prototype);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
235
234
|
export var GrantOperation;
|
|
236
235
|
(function (GrantOperation) {
|
|
237
236
|
GrantOperation["CreateGrant"] = "CreateGrant";
|
|
@@ -251,30 +250,30 @@ export var GrantOperation;
|
|
|
251
250
|
GrantOperation["Verify"] = "Verify";
|
|
252
251
|
GrantOperation["VerifyMac"] = "VerifyMac";
|
|
253
252
|
})(GrantOperation || (GrantOperation = {}));
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
}
|
|
277
|
-
|
|
253
|
+
export class DisabledException extends __BaseException {
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "DisabledException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
this.name = "DisabledException";
|
|
261
|
+
this.$fault = "client";
|
|
262
|
+
Object.setPrototypeOf(this, DisabledException.prototype);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
export class InvalidGrantTokenException extends __BaseException {
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "InvalidGrantTokenException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
this.name = "InvalidGrantTokenException";
|
|
273
|
+
this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(this, InvalidGrantTokenException.prototype);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
278
277
|
export var CustomerMasterKeySpec;
|
|
279
278
|
(function (CustomerMasterKeySpec) {
|
|
280
279
|
CustomerMasterKeySpec["ECC_NIST_P256"] = "ECC_NIST_P256";
|
|
@@ -372,54 +371,54 @@ export var SigningAlgorithmSpec;
|
|
|
372
371
|
SigningAlgorithmSpec["RSASSA_PSS_SHA_512"] = "RSASSA_PSS_SHA_512";
|
|
373
372
|
SigningAlgorithmSpec["SM2DSA"] = "SM2DSA";
|
|
374
373
|
})(SigningAlgorithmSpec || (SigningAlgorithmSpec = {}));
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
}
|
|
422
|
-
|
|
374
|
+
export class MalformedPolicyDocumentException extends __BaseException {
|
|
375
|
+
constructor(opts) {
|
|
376
|
+
super({
|
|
377
|
+
name: "MalformedPolicyDocumentException",
|
|
378
|
+
$fault: "client",
|
|
379
|
+
...opts,
|
|
380
|
+
});
|
|
381
|
+
this.name = "MalformedPolicyDocumentException";
|
|
382
|
+
this.$fault = "client";
|
|
383
|
+
Object.setPrototypeOf(this, MalformedPolicyDocumentException.prototype);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
export class TagException extends __BaseException {
|
|
387
|
+
constructor(opts) {
|
|
388
|
+
super({
|
|
389
|
+
name: "TagException",
|
|
390
|
+
$fault: "client",
|
|
391
|
+
...opts,
|
|
392
|
+
});
|
|
393
|
+
this.name = "TagException";
|
|
394
|
+
this.$fault = "client";
|
|
395
|
+
Object.setPrototypeOf(this, TagException.prototype);
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
export class UnsupportedOperationException extends __BaseException {
|
|
399
|
+
constructor(opts) {
|
|
400
|
+
super({
|
|
401
|
+
name: "UnsupportedOperationException",
|
|
402
|
+
$fault: "client",
|
|
403
|
+
...opts,
|
|
404
|
+
});
|
|
405
|
+
this.name = "UnsupportedOperationException";
|
|
406
|
+
this.$fault = "client";
|
|
407
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
export class CustomKeyStoreHasCMKsException extends __BaseException {
|
|
411
|
+
constructor(opts) {
|
|
412
|
+
super({
|
|
413
|
+
name: "CustomKeyStoreHasCMKsException",
|
|
414
|
+
$fault: "client",
|
|
415
|
+
...opts,
|
|
416
|
+
});
|
|
417
|
+
this.name = "CustomKeyStoreHasCMKsException";
|
|
418
|
+
this.$fault = "client";
|
|
419
|
+
Object.setPrototypeOf(this, CustomKeyStoreHasCMKsException.prototype);
|
|
420
|
+
}
|
|
421
|
+
}
|
|
423
422
|
export var DataKeyPairSpec;
|
|
424
423
|
(function (DataKeyPairSpec) {
|
|
425
424
|
DataKeyPairSpec["ECC_NIST_P256"] = "ECC_NIST_P256";
|
|
@@ -436,237 +435,435 @@ export var DataKeySpec;
|
|
|
436
435
|
DataKeySpec["AES_128"] = "AES_128";
|
|
437
436
|
DataKeySpec["AES_256"] = "AES_256";
|
|
438
437
|
})(DataKeySpec || (DataKeySpec = {}));
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
}
|
|
510
|
-
|
|
438
|
+
export class IncorrectKeyException extends __BaseException {
|
|
439
|
+
constructor(opts) {
|
|
440
|
+
super({
|
|
441
|
+
name: "IncorrectKeyException",
|
|
442
|
+
$fault: "client",
|
|
443
|
+
...opts,
|
|
444
|
+
});
|
|
445
|
+
this.name = "IncorrectKeyException";
|
|
446
|
+
this.$fault = "client";
|
|
447
|
+
Object.setPrototypeOf(this, IncorrectKeyException.prototype);
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
export class InvalidCiphertextException extends __BaseException {
|
|
451
|
+
constructor(opts) {
|
|
452
|
+
super({
|
|
453
|
+
name: "InvalidCiphertextException",
|
|
454
|
+
$fault: "client",
|
|
455
|
+
...opts,
|
|
456
|
+
});
|
|
457
|
+
this.name = "InvalidCiphertextException";
|
|
458
|
+
this.$fault = "client";
|
|
459
|
+
Object.setPrototypeOf(this, InvalidCiphertextException.prototype);
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
export class InvalidKeyUsageException extends __BaseException {
|
|
463
|
+
constructor(opts) {
|
|
464
|
+
super({
|
|
465
|
+
name: "InvalidKeyUsageException",
|
|
466
|
+
$fault: "client",
|
|
467
|
+
...opts,
|
|
468
|
+
});
|
|
469
|
+
this.name = "InvalidKeyUsageException";
|
|
470
|
+
this.$fault = "client";
|
|
471
|
+
Object.setPrototypeOf(this, InvalidKeyUsageException.prototype);
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
export class KeyUnavailableException extends __BaseException {
|
|
475
|
+
constructor(opts) {
|
|
476
|
+
super({
|
|
477
|
+
name: "KeyUnavailableException",
|
|
478
|
+
$fault: "server",
|
|
479
|
+
...opts,
|
|
480
|
+
});
|
|
481
|
+
this.name = "KeyUnavailableException";
|
|
482
|
+
this.$fault = "server";
|
|
483
|
+
Object.setPrototypeOf(this, KeyUnavailableException.prototype);
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
export class InvalidMarkerException extends __BaseException {
|
|
487
|
+
constructor(opts) {
|
|
488
|
+
super({
|
|
489
|
+
name: "InvalidMarkerException",
|
|
490
|
+
$fault: "client",
|
|
491
|
+
...opts,
|
|
492
|
+
});
|
|
493
|
+
this.name = "InvalidMarkerException";
|
|
494
|
+
this.$fault = "client";
|
|
495
|
+
Object.setPrototypeOf(this, InvalidMarkerException.prototype);
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
export class ExpiredImportTokenException extends __BaseException {
|
|
499
|
+
constructor(opts) {
|
|
500
|
+
super({
|
|
501
|
+
name: "ExpiredImportTokenException",
|
|
502
|
+
$fault: "client",
|
|
503
|
+
...opts,
|
|
504
|
+
});
|
|
505
|
+
this.name = "ExpiredImportTokenException";
|
|
506
|
+
this.$fault = "client";
|
|
507
|
+
Object.setPrototypeOf(this, ExpiredImportTokenException.prototype);
|
|
508
|
+
}
|
|
509
|
+
}
|
|
511
510
|
export var WrappingKeySpec;
|
|
512
511
|
(function (WrappingKeySpec) {
|
|
513
512
|
WrappingKeySpec["RSA_2048"] = "RSA_2048";
|
|
514
513
|
})(WrappingKeySpec || (WrappingKeySpec = {}));
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
}
|
|
574
|
-
|
|
514
|
+
export class IncorrectKeyMaterialException extends __BaseException {
|
|
515
|
+
constructor(opts) {
|
|
516
|
+
super({
|
|
517
|
+
name: "IncorrectKeyMaterialException",
|
|
518
|
+
$fault: "client",
|
|
519
|
+
...opts,
|
|
520
|
+
});
|
|
521
|
+
this.name = "IncorrectKeyMaterialException";
|
|
522
|
+
this.$fault = "client";
|
|
523
|
+
Object.setPrototypeOf(this, IncorrectKeyMaterialException.prototype);
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
export class InvalidImportTokenException extends __BaseException {
|
|
527
|
+
constructor(opts) {
|
|
528
|
+
super({
|
|
529
|
+
name: "InvalidImportTokenException",
|
|
530
|
+
$fault: "client",
|
|
531
|
+
...opts,
|
|
532
|
+
});
|
|
533
|
+
this.name = "InvalidImportTokenException";
|
|
534
|
+
this.$fault = "client";
|
|
535
|
+
Object.setPrototypeOf(this, InvalidImportTokenException.prototype);
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
export class InvalidGrantIdException extends __BaseException {
|
|
539
|
+
constructor(opts) {
|
|
540
|
+
super({
|
|
541
|
+
name: "InvalidGrantIdException",
|
|
542
|
+
$fault: "client",
|
|
543
|
+
...opts,
|
|
544
|
+
});
|
|
545
|
+
this.name = "InvalidGrantIdException";
|
|
546
|
+
this.$fault = "client";
|
|
547
|
+
Object.setPrototypeOf(this, InvalidGrantIdException.prototype);
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
export class KMSInvalidMacException extends __BaseException {
|
|
551
|
+
constructor(opts) {
|
|
552
|
+
super({
|
|
553
|
+
name: "KMSInvalidMacException",
|
|
554
|
+
$fault: "client",
|
|
555
|
+
...opts,
|
|
556
|
+
});
|
|
557
|
+
this.name = "KMSInvalidMacException";
|
|
558
|
+
this.$fault = "client";
|
|
559
|
+
Object.setPrototypeOf(this, KMSInvalidMacException.prototype);
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
export class KMSInvalidSignatureException extends __BaseException {
|
|
563
|
+
constructor(opts) {
|
|
564
|
+
super({
|
|
565
|
+
name: "KMSInvalidSignatureException",
|
|
566
|
+
$fault: "client",
|
|
567
|
+
...opts,
|
|
568
|
+
});
|
|
569
|
+
this.name = "KMSInvalidSignatureException";
|
|
570
|
+
this.$fault = "client";
|
|
571
|
+
Object.setPrototypeOf(this, KMSInvalidSignatureException.prototype);
|
|
572
|
+
}
|
|
573
|
+
}
|
|
575
574
|
export var MessageType;
|
|
576
575
|
(function (MessageType) {
|
|
577
576
|
MessageType["DIGEST"] = "DIGEST";
|
|
578
577
|
MessageType["RAW"] = "RAW";
|
|
579
578
|
})(MessageType || (MessageType = {}));
|
|
580
|
-
export
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
export
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
export
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
export
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
export
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
export
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
export
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
export
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
export
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
export
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
export
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
export
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
export
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
export
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
export
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
export
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
export
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
export
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
export
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
export
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
export
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
export
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
export
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
export
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
export
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
export
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
export
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
export
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
export
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
export
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
export
|
|
579
|
+
export const AliasListEntryFilterSensitiveLog = (obj) => ({
|
|
580
|
+
...obj,
|
|
581
|
+
});
|
|
582
|
+
export const CancelKeyDeletionRequestFilterSensitiveLog = (obj) => ({
|
|
583
|
+
...obj,
|
|
584
|
+
});
|
|
585
|
+
export const CancelKeyDeletionResponseFilterSensitiveLog = (obj) => ({
|
|
586
|
+
...obj,
|
|
587
|
+
});
|
|
588
|
+
export const ConnectCustomKeyStoreRequestFilterSensitiveLog = (obj) => ({
|
|
589
|
+
...obj,
|
|
590
|
+
});
|
|
591
|
+
export const ConnectCustomKeyStoreResponseFilterSensitiveLog = (obj) => ({
|
|
592
|
+
...obj,
|
|
593
|
+
});
|
|
594
|
+
export const CreateAliasRequestFilterSensitiveLog = (obj) => ({
|
|
595
|
+
...obj,
|
|
596
|
+
});
|
|
597
|
+
export const CreateCustomKeyStoreRequestFilterSensitiveLog = (obj) => ({
|
|
598
|
+
...obj,
|
|
599
|
+
...(obj.KeyStorePassword && { KeyStorePassword: SENSITIVE_STRING }),
|
|
600
|
+
});
|
|
601
|
+
export const CreateCustomKeyStoreResponseFilterSensitiveLog = (obj) => ({
|
|
602
|
+
...obj,
|
|
603
|
+
});
|
|
604
|
+
export const GrantConstraintsFilterSensitiveLog = (obj) => ({
|
|
605
|
+
...obj,
|
|
606
|
+
});
|
|
607
|
+
export const CreateGrantRequestFilterSensitiveLog = (obj) => ({
|
|
608
|
+
...obj,
|
|
609
|
+
});
|
|
610
|
+
export const CreateGrantResponseFilterSensitiveLog = (obj) => ({
|
|
611
|
+
...obj,
|
|
612
|
+
});
|
|
613
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
});
|
|
616
|
+
export const CreateKeyRequestFilterSensitiveLog = (obj) => ({
|
|
617
|
+
...obj,
|
|
618
|
+
});
|
|
619
|
+
export const MultiRegionKeyFilterSensitiveLog = (obj) => ({
|
|
620
|
+
...obj,
|
|
621
|
+
});
|
|
622
|
+
export const MultiRegionConfigurationFilterSensitiveLog = (obj) => ({
|
|
623
|
+
...obj,
|
|
624
|
+
});
|
|
625
|
+
export const KeyMetadataFilterSensitiveLog = (obj) => ({
|
|
626
|
+
...obj,
|
|
627
|
+
});
|
|
628
|
+
export const CreateKeyResponseFilterSensitiveLog = (obj) => ({
|
|
629
|
+
...obj,
|
|
630
|
+
});
|
|
631
|
+
export const CustomKeyStoresListEntryFilterSensitiveLog = (obj) => ({
|
|
632
|
+
...obj,
|
|
633
|
+
});
|
|
634
|
+
export const DecryptRequestFilterSensitiveLog = (obj) => ({
|
|
635
|
+
...obj,
|
|
636
|
+
});
|
|
637
|
+
export const DecryptResponseFilterSensitiveLog = (obj) => ({
|
|
638
|
+
...obj,
|
|
639
|
+
...(obj.Plaintext && { Plaintext: SENSITIVE_STRING }),
|
|
640
|
+
});
|
|
641
|
+
export const DeleteAliasRequestFilterSensitiveLog = (obj) => ({
|
|
642
|
+
...obj,
|
|
643
|
+
});
|
|
644
|
+
export const DeleteCustomKeyStoreRequestFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|
|
647
|
+
export const DeleteCustomKeyStoreResponseFilterSensitiveLog = (obj) => ({
|
|
648
|
+
...obj,
|
|
649
|
+
});
|
|
650
|
+
export const DeleteImportedKeyMaterialRequestFilterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
});
|
|
653
|
+
export const DescribeCustomKeyStoresRequestFilterSensitiveLog = (obj) => ({
|
|
654
|
+
...obj,
|
|
655
|
+
});
|
|
656
|
+
export const DescribeCustomKeyStoresResponseFilterSensitiveLog = (obj) => ({
|
|
657
|
+
...obj,
|
|
658
|
+
});
|
|
659
|
+
export const DescribeKeyRequestFilterSensitiveLog = (obj) => ({
|
|
660
|
+
...obj,
|
|
661
|
+
});
|
|
662
|
+
export const DescribeKeyResponseFilterSensitiveLog = (obj) => ({
|
|
663
|
+
...obj,
|
|
664
|
+
});
|
|
665
|
+
export const DisableKeyRequestFilterSensitiveLog = (obj) => ({
|
|
666
|
+
...obj,
|
|
667
|
+
});
|
|
668
|
+
export const DisableKeyRotationRequestFilterSensitiveLog = (obj) => ({
|
|
669
|
+
...obj,
|
|
670
|
+
});
|
|
671
|
+
export const DisconnectCustomKeyStoreRequestFilterSensitiveLog = (obj) => ({
|
|
672
|
+
...obj,
|
|
673
|
+
});
|
|
674
|
+
export const DisconnectCustomKeyStoreResponseFilterSensitiveLog = (obj) => ({
|
|
675
|
+
...obj,
|
|
676
|
+
});
|
|
677
|
+
export const EnableKeyRequestFilterSensitiveLog = (obj) => ({
|
|
678
|
+
...obj,
|
|
679
|
+
});
|
|
680
|
+
export const EnableKeyRotationRequestFilterSensitiveLog = (obj) => ({
|
|
681
|
+
...obj,
|
|
682
|
+
});
|
|
683
|
+
export const EncryptRequestFilterSensitiveLog = (obj) => ({
|
|
684
|
+
...obj,
|
|
685
|
+
...(obj.Plaintext && { Plaintext: SENSITIVE_STRING }),
|
|
686
|
+
});
|
|
687
|
+
export const EncryptResponseFilterSensitiveLog = (obj) => ({
|
|
688
|
+
...obj,
|
|
689
|
+
});
|
|
690
|
+
export const GenerateDataKeyRequestFilterSensitiveLog = (obj) => ({
|
|
691
|
+
...obj,
|
|
692
|
+
});
|
|
693
|
+
export const GenerateDataKeyResponseFilterSensitiveLog = (obj) => ({
|
|
694
|
+
...obj,
|
|
695
|
+
...(obj.Plaintext && { Plaintext: SENSITIVE_STRING }),
|
|
696
|
+
});
|
|
697
|
+
export const GenerateDataKeyPairRequestFilterSensitiveLog = (obj) => ({
|
|
698
|
+
...obj,
|
|
699
|
+
});
|
|
700
|
+
export const GenerateDataKeyPairResponseFilterSensitiveLog = (obj) => ({
|
|
701
|
+
...obj,
|
|
702
|
+
...(obj.PrivateKeyPlaintext && { PrivateKeyPlaintext: SENSITIVE_STRING }),
|
|
703
|
+
});
|
|
704
|
+
export const GenerateDataKeyPairWithoutPlaintextRequestFilterSensitiveLog = (obj) => ({
|
|
705
|
+
...obj,
|
|
706
|
+
});
|
|
707
|
+
export const GenerateDataKeyPairWithoutPlaintextResponseFilterSensitiveLog = (obj) => ({
|
|
708
|
+
...obj,
|
|
709
|
+
});
|
|
710
|
+
export const GenerateDataKeyWithoutPlaintextRequestFilterSensitiveLog = (obj) => ({
|
|
711
|
+
...obj,
|
|
712
|
+
});
|
|
713
|
+
export const GenerateDataKeyWithoutPlaintextResponseFilterSensitiveLog = (obj) => ({
|
|
714
|
+
...obj,
|
|
715
|
+
});
|
|
716
|
+
export const GenerateMacRequestFilterSensitiveLog = (obj) => ({
|
|
717
|
+
...obj,
|
|
718
|
+
...(obj.Message && { Message: SENSITIVE_STRING }),
|
|
719
|
+
});
|
|
720
|
+
export const GenerateMacResponseFilterSensitiveLog = (obj) => ({
|
|
721
|
+
...obj,
|
|
722
|
+
});
|
|
723
|
+
export const GenerateRandomRequestFilterSensitiveLog = (obj) => ({
|
|
724
|
+
...obj,
|
|
725
|
+
});
|
|
726
|
+
export const GenerateRandomResponseFilterSensitiveLog = (obj) => ({
|
|
727
|
+
...obj,
|
|
728
|
+
...(obj.Plaintext && { Plaintext: SENSITIVE_STRING }),
|
|
729
|
+
});
|
|
730
|
+
export const GetKeyPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
731
|
+
...obj,
|
|
732
|
+
});
|
|
733
|
+
export const GetKeyPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
734
|
+
...obj,
|
|
735
|
+
});
|
|
736
|
+
export const GetKeyRotationStatusRequestFilterSensitiveLog = (obj) => ({
|
|
737
|
+
...obj,
|
|
738
|
+
});
|
|
739
|
+
export const GetKeyRotationStatusResponseFilterSensitiveLog = (obj) => ({
|
|
740
|
+
...obj,
|
|
741
|
+
});
|
|
742
|
+
export const GetParametersForImportRequestFilterSensitiveLog = (obj) => ({
|
|
743
|
+
...obj,
|
|
744
|
+
});
|
|
745
|
+
export const GetParametersForImportResponseFilterSensitiveLog = (obj) => ({
|
|
746
|
+
...obj,
|
|
747
|
+
...(obj.PublicKey && { PublicKey: SENSITIVE_STRING }),
|
|
748
|
+
});
|
|
749
|
+
export const GetPublicKeyRequestFilterSensitiveLog = (obj) => ({
|
|
750
|
+
...obj,
|
|
751
|
+
});
|
|
752
|
+
export const GetPublicKeyResponseFilterSensitiveLog = (obj) => ({
|
|
753
|
+
...obj,
|
|
754
|
+
});
|
|
755
|
+
export const GrantListEntryFilterSensitiveLog = (obj) => ({
|
|
756
|
+
...obj,
|
|
757
|
+
});
|
|
758
|
+
export const ImportKeyMaterialRequestFilterSensitiveLog = (obj) => ({
|
|
759
|
+
...obj,
|
|
760
|
+
});
|
|
761
|
+
export const ImportKeyMaterialResponseFilterSensitiveLog = (obj) => ({
|
|
762
|
+
...obj,
|
|
763
|
+
});
|
|
764
|
+
export const KeyListEntryFilterSensitiveLog = (obj) => ({
|
|
765
|
+
...obj,
|
|
766
|
+
});
|
|
767
|
+
export const ListAliasesRequestFilterSensitiveLog = (obj) => ({
|
|
768
|
+
...obj,
|
|
769
|
+
});
|
|
770
|
+
export const ListAliasesResponseFilterSensitiveLog = (obj) => ({
|
|
771
|
+
...obj,
|
|
772
|
+
});
|
|
773
|
+
export const ListGrantsRequestFilterSensitiveLog = (obj) => ({
|
|
774
|
+
...obj,
|
|
775
|
+
});
|
|
776
|
+
export const ListGrantsResponseFilterSensitiveLog = (obj) => ({
|
|
777
|
+
...obj,
|
|
778
|
+
});
|
|
779
|
+
export const ListKeyPoliciesRequestFilterSensitiveLog = (obj) => ({
|
|
780
|
+
...obj,
|
|
781
|
+
});
|
|
782
|
+
export const ListKeyPoliciesResponseFilterSensitiveLog = (obj) => ({
|
|
783
|
+
...obj,
|
|
784
|
+
});
|
|
785
|
+
export const ListKeysRequestFilterSensitiveLog = (obj) => ({
|
|
786
|
+
...obj,
|
|
787
|
+
});
|
|
788
|
+
export const ListKeysResponseFilterSensitiveLog = (obj) => ({
|
|
789
|
+
...obj,
|
|
790
|
+
});
|
|
791
|
+
export const ListResourceTagsRequestFilterSensitiveLog = (obj) => ({
|
|
792
|
+
...obj,
|
|
793
|
+
});
|
|
794
|
+
export const ListResourceTagsResponseFilterSensitiveLog = (obj) => ({
|
|
795
|
+
...obj,
|
|
796
|
+
});
|
|
797
|
+
export const ListRetirableGrantsRequestFilterSensitiveLog = (obj) => ({
|
|
798
|
+
...obj,
|
|
799
|
+
});
|
|
800
|
+
export const PutKeyPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
801
|
+
...obj,
|
|
802
|
+
});
|
|
803
|
+
export const ReEncryptRequestFilterSensitiveLog = (obj) => ({
|
|
804
|
+
...obj,
|
|
805
|
+
});
|
|
806
|
+
export const ReEncryptResponseFilterSensitiveLog = (obj) => ({
|
|
807
|
+
...obj,
|
|
808
|
+
});
|
|
809
|
+
export const ReplicateKeyRequestFilterSensitiveLog = (obj) => ({
|
|
810
|
+
...obj,
|
|
811
|
+
});
|
|
812
|
+
export const ReplicateKeyResponseFilterSensitiveLog = (obj) => ({
|
|
813
|
+
...obj,
|
|
814
|
+
});
|
|
815
|
+
export const RetireGrantRequestFilterSensitiveLog = (obj) => ({
|
|
816
|
+
...obj,
|
|
817
|
+
});
|
|
818
|
+
export const RevokeGrantRequestFilterSensitiveLog = (obj) => ({
|
|
819
|
+
...obj,
|
|
820
|
+
});
|
|
821
|
+
export const ScheduleKeyDeletionRequestFilterSensitiveLog = (obj) => ({
|
|
822
|
+
...obj,
|
|
823
|
+
});
|
|
824
|
+
export const ScheduleKeyDeletionResponseFilterSensitiveLog = (obj) => ({
|
|
825
|
+
...obj,
|
|
826
|
+
});
|
|
827
|
+
export const SignRequestFilterSensitiveLog = (obj) => ({
|
|
828
|
+
...obj,
|
|
829
|
+
...(obj.Message && { Message: SENSITIVE_STRING }),
|
|
830
|
+
});
|
|
831
|
+
export const SignResponseFilterSensitiveLog = (obj) => ({
|
|
832
|
+
...obj,
|
|
833
|
+
});
|
|
834
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
835
|
+
...obj,
|
|
836
|
+
});
|
|
837
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
838
|
+
...obj,
|
|
839
|
+
});
|
|
840
|
+
export const UpdateAliasRequestFilterSensitiveLog = (obj) => ({
|
|
841
|
+
...obj,
|
|
842
|
+
});
|
|
843
|
+
export const UpdateCustomKeyStoreRequestFilterSensitiveLog = (obj) => ({
|
|
844
|
+
...obj,
|
|
845
|
+
...(obj.KeyStorePassword && { KeyStorePassword: SENSITIVE_STRING }),
|
|
846
|
+
});
|
|
847
|
+
export const UpdateCustomKeyStoreResponseFilterSensitiveLog = (obj) => ({
|
|
848
|
+
...obj,
|
|
849
|
+
});
|
|
850
|
+
export const UpdateKeyDescriptionRequestFilterSensitiveLog = (obj) => ({
|
|
851
|
+
...obj,
|
|
852
|
+
});
|
|
853
|
+
export const UpdatePrimaryRegionRequestFilterSensitiveLog = (obj) => ({
|
|
854
|
+
...obj,
|
|
855
|
+
});
|
|
856
|
+
export const VerifyRequestFilterSensitiveLog = (obj) => ({
|
|
857
|
+
...obj,
|
|
858
|
+
...(obj.Message && { Message: SENSITIVE_STRING }),
|
|
859
|
+
});
|
|
860
|
+
export const VerifyResponseFilterSensitiveLog = (obj) => ({
|
|
861
|
+
...obj,
|
|
862
|
+
});
|
|
863
|
+
export const VerifyMacRequestFilterSensitiveLog = (obj) => ({
|
|
864
|
+
...obj,
|
|
865
|
+
...(obj.Message && { Message: SENSITIVE_STRING }),
|
|
866
|
+
});
|
|
867
|
+
export const VerifyMacResponseFilterSensitiveLog = (obj) => ({
|
|
868
|
+
...obj,
|
|
869
|
+
});
|