@aws-sdk/client-kms 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/KMS.js +209 -202
- package/dist-es/KMSClient.js +28 -22
- package/dist-es/commands/CancelKeyDeletionCommand.js +28 -21
- package/dist-es/commands/ConnectCustomKeyStoreCommand.js +28 -21
- package/dist-es/commands/CreateAliasCommand.js +29 -22
- package/dist-es/commands/CreateCustomKeyStoreCommand.js +28 -21
- package/dist-es/commands/CreateGrantCommand.js +28 -21
- package/dist-es/commands/CreateKeyCommand.js +28 -21
- package/dist-es/commands/DecryptCommand.js +28 -21
- package/dist-es/commands/DeleteAliasCommand.js +29 -22
- package/dist-es/commands/DeleteCustomKeyStoreCommand.js +28 -21
- package/dist-es/commands/DeleteImportedKeyMaterialCommand.js +29 -22
- package/dist-es/commands/DescribeCustomKeyStoresCommand.js +28 -21
- package/dist-es/commands/DescribeKeyCommand.js +28 -21
- package/dist-es/commands/DisableKeyCommand.js +29 -22
- package/dist-es/commands/DisableKeyRotationCommand.js +29 -22
- package/dist-es/commands/DisconnectCustomKeyStoreCommand.js +28 -21
- package/dist-es/commands/EnableKeyCommand.js +29 -22
- package/dist-es/commands/EnableKeyRotationCommand.js +29 -22
- package/dist-es/commands/EncryptCommand.js +28 -21
- package/dist-es/commands/GenerateDataKeyCommand.js +28 -21
- package/dist-es/commands/GenerateDataKeyPairCommand.js +28 -21
- package/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +28 -21
- package/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +28 -21
- package/dist-es/commands/GenerateMacCommand.js +28 -21
- package/dist-es/commands/GenerateRandomCommand.js +28 -21
- package/dist-es/commands/GetKeyPolicyCommand.js +28 -21
- package/dist-es/commands/GetKeyRotationStatusCommand.js +28 -21
- package/dist-es/commands/GetParametersForImportCommand.js +28 -21
- package/dist-es/commands/GetPublicKeyCommand.js +28 -21
- package/dist-es/commands/ImportKeyMaterialCommand.js +28 -21
- package/dist-es/commands/ListAliasesCommand.js +28 -21
- package/dist-es/commands/ListGrantsCommand.js +28 -21
- package/dist-es/commands/ListKeyPoliciesCommand.js +28 -21
- package/dist-es/commands/ListKeysCommand.js +28 -21
- package/dist-es/commands/ListResourceTagsCommand.js +28 -21
- package/dist-es/commands/ListRetirableGrantsCommand.js +28 -21
- package/dist-es/commands/PutKeyPolicyCommand.js +29 -22
- package/dist-es/commands/ReEncryptCommand.js +28 -21
- package/dist-es/commands/ReplicateKeyCommand.js +28 -21
- package/dist-es/commands/RetireGrantCommand.js +29 -22
- package/dist-es/commands/RevokeGrantCommand.js +29 -22
- package/dist-es/commands/ScheduleKeyDeletionCommand.js +28 -21
- package/dist-es/commands/SignCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +29 -22
- package/dist-es/commands/UntagResourceCommand.js +29 -22
- package/dist-es/commands/UpdateAliasCommand.js +29 -22
- package/dist-es/commands/UpdateCustomKeyStoreCommand.js +28 -21
- package/dist-es/commands/UpdateKeyDescriptionCommand.js +29 -22
- package/dist-es/commands/UpdatePrimaryRegionCommand.js +29 -22
- package/dist-es/commands/VerifyCommand.js +28 -21
- package/dist-es/commands/VerifyMacCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/KMSServiceException.js +10 -5
- package/dist-es/models/models_0.js +502 -699
- package/dist-es/pagination/DescribeCustomKeyStoresPaginator.js +68 -25
- package/dist-es/pagination/ListAliasesPaginator.js +68 -25
- package/dist-es/pagination/ListGrantsPaginator.js +68 -25
- package/dist-es/pagination/ListKeyPoliciesPaginator.js +68 -25
- package/dist-es/pagination/ListKeysPaginator.js +68 -25
- package/dist-es/pagination/ListResourceTagsPaginator.js +68 -25
- package/dist-es/pagination/ListRetirableGrantsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +4852 -3725
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { KMSServiceException as __BaseException } from "./KMSServiceException";
|
|
3
4
|
export var AlgorithmSpec;
|
|
@@ -6,162 +7,162 @@ export var AlgorithmSpec;
|
|
|
6
7
|
AlgorithmSpec["RSAES_OAEP_SHA_256"] = "RSAES_OAEP_SHA_256";
|
|
7
8
|
AlgorithmSpec["RSAES_PKCS1_V1_5"] = "RSAES_PKCS1_V1_5";
|
|
8
9
|
})(AlgorithmSpec || (AlgorithmSpec = {}));
|
|
9
|
-
|
|
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
|
-
}
|
|
10
|
+
var AlreadyExistsException = (function (_super) {
|
|
11
|
+
__extends(AlreadyExistsException, _super);
|
|
12
|
+
function AlreadyExistsException(opts) {
|
|
13
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
14
|
+
_this.name = "AlreadyExistsException";
|
|
15
|
+
_this.$fault = "client";
|
|
16
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
17
|
+
return _this;
|
|
18
|
+
}
|
|
19
|
+
return AlreadyExistsException;
|
|
20
|
+
}(__BaseException));
|
|
21
|
+
export { AlreadyExistsException };
|
|
22
|
+
var DependencyTimeoutException = (function (_super) {
|
|
23
|
+
__extends(DependencyTimeoutException, _super);
|
|
24
|
+
function DependencyTimeoutException(opts) {
|
|
25
|
+
var _this = _super.call(this, __assign({ name: "DependencyTimeoutException", $fault: "server" }, opts)) || this;
|
|
26
|
+
_this.name = "DependencyTimeoutException";
|
|
27
|
+
_this.$fault = "server";
|
|
28
|
+
Object.setPrototypeOf(_this, DependencyTimeoutException.prototype);
|
|
29
|
+
return _this;
|
|
30
|
+
}
|
|
31
|
+
return DependencyTimeoutException;
|
|
32
|
+
}(__BaseException));
|
|
33
|
+
export { DependencyTimeoutException };
|
|
34
|
+
var InvalidArnException = (function (_super) {
|
|
35
|
+
__extends(InvalidArnException, _super);
|
|
36
|
+
function InvalidArnException(opts) {
|
|
37
|
+
var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
|
|
38
|
+
_this.name = "InvalidArnException";
|
|
39
|
+
_this.$fault = "client";
|
|
40
|
+
Object.setPrototypeOf(_this, InvalidArnException.prototype);
|
|
41
|
+
return _this;
|
|
42
|
+
}
|
|
43
|
+
return InvalidArnException;
|
|
44
|
+
}(__BaseException));
|
|
45
|
+
export { InvalidArnException };
|
|
46
|
+
var KMSInternalException = (function (_super) {
|
|
47
|
+
__extends(KMSInternalException, _super);
|
|
48
|
+
function KMSInternalException(opts) {
|
|
49
|
+
var _this = _super.call(this, __assign({ name: "KMSInternalException", $fault: "server" }, opts)) || this;
|
|
50
|
+
_this.name = "KMSInternalException";
|
|
51
|
+
_this.$fault = "server";
|
|
52
|
+
Object.setPrototypeOf(_this, KMSInternalException.prototype);
|
|
53
|
+
return _this;
|
|
54
|
+
}
|
|
55
|
+
return KMSInternalException;
|
|
56
|
+
}(__BaseException));
|
|
57
|
+
export { KMSInternalException };
|
|
58
|
+
var KMSInvalidStateException = (function (_super) {
|
|
59
|
+
__extends(KMSInvalidStateException, _super);
|
|
60
|
+
function KMSInvalidStateException(opts) {
|
|
61
|
+
var _this = _super.call(this, __assign({ name: "KMSInvalidStateException", $fault: "client" }, opts)) || this;
|
|
62
|
+
_this.name = "KMSInvalidStateException";
|
|
63
|
+
_this.$fault = "client";
|
|
64
|
+
Object.setPrototypeOf(_this, KMSInvalidStateException.prototype);
|
|
65
|
+
return _this;
|
|
66
|
+
}
|
|
67
|
+
return KMSInvalidStateException;
|
|
68
|
+
}(__BaseException));
|
|
69
|
+
export { KMSInvalidStateException };
|
|
70
|
+
var NotFoundException = (function (_super) {
|
|
71
|
+
__extends(NotFoundException, _super);
|
|
72
|
+
function NotFoundException(opts) {
|
|
73
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
74
|
+
_this.name = "NotFoundException";
|
|
75
|
+
_this.$fault = "client";
|
|
76
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
77
|
+
return _this;
|
|
78
|
+
}
|
|
79
|
+
return NotFoundException;
|
|
80
|
+
}(__BaseException));
|
|
81
|
+
export { NotFoundException };
|
|
82
|
+
var CloudHsmClusterInUseException = (function (_super) {
|
|
83
|
+
__extends(CloudHsmClusterInUseException, _super);
|
|
84
|
+
function CloudHsmClusterInUseException(opts) {
|
|
85
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmClusterInUseException", $fault: "client" }, opts)) || this;
|
|
86
|
+
_this.name = "CloudHsmClusterInUseException";
|
|
87
|
+
_this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(_this, CloudHsmClusterInUseException.prototype);
|
|
89
|
+
return _this;
|
|
90
|
+
}
|
|
91
|
+
return CloudHsmClusterInUseException;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { CloudHsmClusterInUseException };
|
|
94
|
+
var CloudHsmClusterInvalidConfigurationException = (function (_super) {
|
|
95
|
+
__extends(CloudHsmClusterInvalidConfigurationException, _super);
|
|
96
|
+
function CloudHsmClusterInvalidConfigurationException(opts) {
|
|
97
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmClusterInvalidConfigurationException", $fault: "client" }, opts)) || this;
|
|
98
|
+
_this.name = "CloudHsmClusterInvalidConfigurationException";
|
|
99
|
+
_this.$fault = "client";
|
|
100
|
+
Object.setPrototypeOf(_this, CloudHsmClusterInvalidConfigurationException.prototype);
|
|
101
|
+
return _this;
|
|
102
|
+
}
|
|
103
|
+
return CloudHsmClusterInvalidConfigurationException;
|
|
104
|
+
}(__BaseException));
|
|
105
|
+
export { CloudHsmClusterInvalidConfigurationException };
|
|
106
|
+
var CloudHsmClusterNotActiveException = (function (_super) {
|
|
107
|
+
__extends(CloudHsmClusterNotActiveException, _super);
|
|
108
|
+
function CloudHsmClusterNotActiveException(opts) {
|
|
109
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmClusterNotActiveException", $fault: "client" }, opts)) || this;
|
|
110
|
+
_this.name = "CloudHsmClusterNotActiveException";
|
|
111
|
+
_this.$fault = "client";
|
|
112
|
+
Object.setPrototypeOf(_this, CloudHsmClusterNotActiveException.prototype);
|
|
113
|
+
return _this;
|
|
114
|
+
}
|
|
115
|
+
return CloudHsmClusterNotActiveException;
|
|
116
|
+
}(__BaseException));
|
|
117
|
+
export { CloudHsmClusterNotActiveException };
|
|
118
|
+
var CloudHsmClusterNotFoundException = (function (_super) {
|
|
119
|
+
__extends(CloudHsmClusterNotFoundException, _super);
|
|
120
|
+
function CloudHsmClusterNotFoundException(opts) {
|
|
121
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmClusterNotFoundException", $fault: "client" }, opts)) || this;
|
|
122
|
+
_this.name = "CloudHsmClusterNotFoundException";
|
|
123
|
+
_this.$fault = "client";
|
|
124
|
+
Object.setPrototypeOf(_this, CloudHsmClusterNotFoundException.prototype);
|
|
125
|
+
return _this;
|
|
126
|
+
}
|
|
127
|
+
return CloudHsmClusterNotFoundException;
|
|
128
|
+
}(__BaseException));
|
|
129
|
+
export { CloudHsmClusterNotFoundException };
|
|
130
|
+
var CloudHsmClusterNotRelatedException = (function (_super) {
|
|
131
|
+
__extends(CloudHsmClusterNotRelatedException, _super);
|
|
132
|
+
function CloudHsmClusterNotRelatedException(opts) {
|
|
133
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmClusterNotRelatedException", $fault: "client" }, opts)) || this;
|
|
134
|
+
_this.name = "CloudHsmClusterNotRelatedException";
|
|
135
|
+
_this.$fault = "client";
|
|
136
|
+
Object.setPrototypeOf(_this, CloudHsmClusterNotRelatedException.prototype);
|
|
137
|
+
return _this;
|
|
138
|
+
}
|
|
139
|
+
return CloudHsmClusterNotRelatedException;
|
|
140
|
+
}(__BaseException));
|
|
141
|
+
export { CloudHsmClusterNotRelatedException };
|
|
142
|
+
var CustomKeyStoreInvalidStateException = (function (_super) {
|
|
143
|
+
__extends(CustomKeyStoreInvalidStateException, _super);
|
|
144
|
+
function CustomKeyStoreInvalidStateException(opts) {
|
|
145
|
+
var _this = _super.call(this, __assign({ name: "CustomKeyStoreInvalidStateException", $fault: "client" }, opts)) || this;
|
|
146
|
+
_this.name = "CustomKeyStoreInvalidStateException";
|
|
147
|
+
_this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(_this, CustomKeyStoreInvalidStateException.prototype);
|
|
149
|
+
return _this;
|
|
150
|
+
}
|
|
151
|
+
return CustomKeyStoreInvalidStateException;
|
|
152
|
+
}(__BaseException));
|
|
153
|
+
export { CustomKeyStoreInvalidStateException };
|
|
154
|
+
var CustomKeyStoreNotFoundException = (function (_super) {
|
|
155
|
+
__extends(CustomKeyStoreNotFoundException, _super);
|
|
156
|
+
function CustomKeyStoreNotFoundException(opts) {
|
|
157
|
+
var _this = _super.call(this, __assign({ name: "CustomKeyStoreNotFoundException", $fault: "client" }, opts)) || this;
|
|
158
|
+
_this.name = "CustomKeyStoreNotFoundException";
|
|
159
|
+
_this.$fault = "client";
|
|
160
|
+
Object.setPrototypeOf(_this, CustomKeyStoreNotFoundException.prototype);
|
|
161
|
+
return _this;
|
|
162
|
+
}
|
|
163
|
+
return CustomKeyStoreNotFoundException;
|
|
164
|
+
}(__BaseException));
|
|
165
|
+
export { CustomKeyStoreNotFoundException };
|
|
165
166
|
export var ConnectionErrorCodeType;
|
|
166
167
|
(function (ConnectionErrorCodeType) {
|
|
167
168
|
ConnectionErrorCodeType["CLUSTER_NOT_FOUND"] = "CLUSTER_NOT_FOUND";
|
|
@@ -183,54 +184,54 @@ export var ConnectionStateType;
|
|
|
183
184
|
ConnectionStateType["DISCONNECTING"] = "DISCONNECTING";
|
|
184
185
|
ConnectionStateType["FAILED"] = "FAILED";
|
|
185
186
|
})(ConnectionStateType || (ConnectionStateType = {}));
|
|
186
|
-
|
|
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
|
-
}
|
|
187
|
+
var InvalidAliasNameException = (function (_super) {
|
|
188
|
+
__extends(InvalidAliasNameException, _super);
|
|
189
|
+
function InvalidAliasNameException(opts) {
|
|
190
|
+
var _this = _super.call(this, __assign({ name: "InvalidAliasNameException", $fault: "client" }, opts)) || this;
|
|
191
|
+
_this.name = "InvalidAliasNameException";
|
|
192
|
+
_this.$fault = "client";
|
|
193
|
+
Object.setPrototypeOf(_this, InvalidAliasNameException.prototype);
|
|
194
|
+
return _this;
|
|
195
|
+
}
|
|
196
|
+
return InvalidAliasNameException;
|
|
197
|
+
}(__BaseException));
|
|
198
|
+
export { InvalidAliasNameException };
|
|
199
|
+
var LimitExceededException = (function (_super) {
|
|
200
|
+
__extends(LimitExceededException, _super);
|
|
201
|
+
function LimitExceededException(opts) {
|
|
202
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
203
|
+
_this.name = "LimitExceededException";
|
|
204
|
+
_this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
206
|
+
return _this;
|
|
207
|
+
}
|
|
208
|
+
return LimitExceededException;
|
|
209
|
+
}(__BaseException));
|
|
210
|
+
export { LimitExceededException };
|
|
211
|
+
var CustomKeyStoreNameInUseException = (function (_super) {
|
|
212
|
+
__extends(CustomKeyStoreNameInUseException, _super);
|
|
213
|
+
function CustomKeyStoreNameInUseException(opts) {
|
|
214
|
+
var _this = _super.call(this, __assign({ name: "CustomKeyStoreNameInUseException", $fault: "client" }, opts)) || this;
|
|
215
|
+
_this.name = "CustomKeyStoreNameInUseException";
|
|
216
|
+
_this.$fault = "client";
|
|
217
|
+
Object.setPrototypeOf(_this, CustomKeyStoreNameInUseException.prototype);
|
|
218
|
+
return _this;
|
|
219
|
+
}
|
|
220
|
+
return CustomKeyStoreNameInUseException;
|
|
221
|
+
}(__BaseException));
|
|
222
|
+
export { CustomKeyStoreNameInUseException };
|
|
223
|
+
var IncorrectTrustAnchorException = (function (_super) {
|
|
224
|
+
__extends(IncorrectTrustAnchorException, _super);
|
|
225
|
+
function IncorrectTrustAnchorException(opts) {
|
|
226
|
+
var _this = _super.call(this, __assign({ name: "IncorrectTrustAnchorException", $fault: "client" }, opts)) || this;
|
|
227
|
+
_this.name = "IncorrectTrustAnchorException";
|
|
228
|
+
_this.$fault = "client";
|
|
229
|
+
Object.setPrototypeOf(_this, IncorrectTrustAnchorException.prototype);
|
|
230
|
+
return _this;
|
|
231
|
+
}
|
|
232
|
+
return IncorrectTrustAnchorException;
|
|
233
|
+
}(__BaseException));
|
|
234
|
+
export { IncorrectTrustAnchorException };
|
|
234
235
|
export var GrantOperation;
|
|
235
236
|
(function (GrantOperation) {
|
|
236
237
|
GrantOperation["CreateGrant"] = "CreateGrant";
|
|
@@ -250,30 +251,30 @@ export var GrantOperation;
|
|
|
250
251
|
GrantOperation["Verify"] = "Verify";
|
|
251
252
|
GrantOperation["VerifyMac"] = "VerifyMac";
|
|
252
253
|
})(GrantOperation || (GrantOperation = {}));
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
}
|
|
254
|
+
var DisabledException = (function (_super) {
|
|
255
|
+
__extends(DisabledException, _super);
|
|
256
|
+
function DisabledException(opts) {
|
|
257
|
+
var _this = _super.call(this, __assign({ name: "DisabledException", $fault: "client" }, opts)) || this;
|
|
258
|
+
_this.name = "DisabledException";
|
|
259
|
+
_this.$fault = "client";
|
|
260
|
+
Object.setPrototypeOf(_this, DisabledException.prototype);
|
|
261
|
+
return _this;
|
|
262
|
+
}
|
|
263
|
+
return DisabledException;
|
|
264
|
+
}(__BaseException));
|
|
265
|
+
export { DisabledException };
|
|
266
|
+
var InvalidGrantTokenException = (function (_super) {
|
|
267
|
+
__extends(InvalidGrantTokenException, _super);
|
|
268
|
+
function InvalidGrantTokenException(opts) {
|
|
269
|
+
var _this = _super.call(this, __assign({ name: "InvalidGrantTokenException", $fault: "client" }, opts)) || this;
|
|
270
|
+
_this.name = "InvalidGrantTokenException";
|
|
271
|
+
_this.$fault = "client";
|
|
272
|
+
Object.setPrototypeOf(_this, InvalidGrantTokenException.prototype);
|
|
273
|
+
return _this;
|
|
274
|
+
}
|
|
275
|
+
return InvalidGrantTokenException;
|
|
276
|
+
}(__BaseException));
|
|
277
|
+
export { InvalidGrantTokenException };
|
|
277
278
|
export var CustomerMasterKeySpec;
|
|
278
279
|
(function (CustomerMasterKeySpec) {
|
|
279
280
|
CustomerMasterKeySpec["ECC_NIST_P256"] = "ECC_NIST_P256";
|
|
@@ -371,54 +372,54 @@ export var SigningAlgorithmSpec;
|
|
|
371
372
|
SigningAlgorithmSpec["RSASSA_PSS_SHA_512"] = "RSASSA_PSS_SHA_512";
|
|
372
373
|
SigningAlgorithmSpec["SM2DSA"] = "SM2DSA";
|
|
373
374
|
})(SigningAlgorithmSpec || (SigningAlgorithmSpec = {}));
|
|
374
|
-
|
|
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
|
-
}
|
|
375
|
+
var MalformedPolicyDocumentException = (function (_super) {
|
|
376
|
+
__extends(MalformedPolicyDocumentException, _super);
|
|
377
|
+
function MalformedPolicyDocumentException(opts) {
|
|
378
|
+
var _this = _super.call(this, __assign({ name: "MalformedPolicyDocumentException", $fault: "client" }, opts)) || this;
|
|
379
|
+
_this.name = "MalformedPolicyDocumentException";
|
|
380
|
+
_this.$fault = "client";
|
|
381
|
+
Object.setPrototypeOf(_this, MalformedPolicyDocumentException.prototype);
|
|
382
|
+
return _this;
|
|
383
|
+
}
|
|
384
|
+
return MalformedPolicyDocumentException;
|
|
385
|
+
}(__BaseException));
|
|
386
|
+
export { MalformedPolicyDocumentException };
|
|
387
|
+
var TagException = (function (_super) {
|
|
388
|
+
__extends(TagException, _super);
|
|
389
|
+
function TagException(opts) {
|
|
390
|
+
var _this = _super.call(this, __assign({ name: "TagException", $fault: "client" }, opts)) || this;
|
|
391
|
+
_this.name = "TagException";
|
|
392
|
+
_this.$fault = "client";
|
|
393
|
+
Object.setPrototypeOf(_this, TagException.prototype);
|
|
394
|
+
return _this;
|
|
395
|
+
}
|
|
396
|
+
return TagException;
|
|
397
|
+
}(__BaseException));
|
|
398
|
+
export { TagException };
|
|
399
|
+
var UnsupportedOperationException = (function (_super) {
|
|
400
|
+
__extends(UnsupportedOperationException, _super);
|
|
401
|
+
function UnsupportedOperationException(opts) {
|
|
402
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
|
|
403
|
+
_this.name = "UnsupportedOperationException";
|
|
404
|
+
_this.$fault = "client";
|
|
405
|
+
Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
|
|
406
|
+
return _this;
|
|
407
|
+
}
|
|
408
|
+
return UnsupportedOperationException;
|
|
409
|
+
}(__BaseException));
|
|
410
|
+
export { UnsupportedOperationException };
|
|
411
|
+
var CustomKeyStoreHasCMKsException = (function (_super) {
|
|
412
|
+
__extends(CustomKeyStoreHasCMKsException, _super);
|
|
413
|
+
function CustomKeyStoreHasCMKsException(opts) {
|
|
414
|
+
var _this = _super.call(this, __assign({ name: "CustomKeyStoreHasCMKsException", $fault: "client" }, opts)) || this;
|
|
415
|
+
_this.name = "CustomKeyStoreHasCMKsException";
|
|
416
|
+
_this.$fault = "client";
|
|
417
|
+
Object.setPrototypeOf(_this, CustomKeyStoreHasCMKsException.prototype);
|
|
418
|
+
return _this;
|
|
419
|
+
}
|
|
420
|
+
return CustomKeyStoreHasCMKsException;
|
|
421
|
+
}(__BaseException));
|
|
422
|
+
export { CustomKeyStoreHasCMKsException };
|
|
422
423
|
export var DataKeyPairSpec;
|
|
423
424
|
(function (DataKeyPairSpec) {
|
|
424
425
|
DataKeyPairSpec["ECC_NIST_P256"] = "ECC_NIST_P256";
|
|
@@ -435,435 +436,237 @@ export var DataKeySpec;
|
|
|
435
436
|
DataKeySpec["AES_128"] = "AES_128";
|
|
436
437
|
DataKeySpec["AES_256"] = "AES_256";
|
|
437
438
|
})(DataKeySpec || (DataKeySpec = {}));
|
|
438
|
-
|
|
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
|
-
}
|
|
439
|
+
var IncorrectKeyException = (function (_super) {
|
|
440
|
+
__extends(IncorrectKeyException, _super);
|
|
441
|
+
function IncorrectKeyException(opts) {
|
|
442
|
+
var _this = _super.call(this, __assign({ name: "IncorrectKeyException", $fault: "client" }, opts)) || this;
|
|
443
|
+
_this.name = "IncorrectKeyException";
|
|
444
|
+
_this.$fault = "client";
|
|
445
|
+
Object.setPrototypeOf(_this, IncorrectKeyException.prototype);
|
|
446
|
+
return _this;
|
|
447
|
+
}
|
|
448
|
+
return IncorrectKeyException;
|
|
449
|
+
}(__BaseException));
|
|
450
|
+
export { IncorrectKeyException };
|
|
451
|
+
var InvalidCiphertextException = (function (_super) {
|
|
452
|
+
__extends(InvalidCiphertextException, _super);
|
|
453
|
+
function InvalidCiphertextException(opts) {
|
|
454
|
+
var _this = _super.call(this, __assign({ name: "InvalidCiphertextException", $fault: "client" }, opts)) || this;
|
|
455
|
+
_this.name = "InvalidCiphertextException";
|
|
456
|
+
_this.$fault = "client";
|
|
457
|
+
Object.setPrototypeOf(_this, InvalidCiphertextException.prototype);
|
|
458
|
+
return _this;
|
|
459
|
+
}
|
|
460
|
+
return InvalidCiphertextException;
|
|
461
|
+
}(__BaseException));
|
|
462
|
+
export { InvalidCiphertextException };
|
|
463
|
+
var InvalidKeyUsageException = (function (_super) {
|
|
464
|
+
__extends(InvalidKeyUsageException, _super);
|
|
465
|
+
function InvalidKeyUsageException(opts) {
|
|
466
|
+
var _this = _super.call(this, __assign({ name: "InvalidKeyUsageException", $fault: "client" }, opts)) || this;
|
|
467
|
+
_this.name = "InvalidKeyUsageException";
|
|
468
|
+
_this.$fault = "client";
|
|
469
|
+
Object.setPrototypeOf(_this, InvalidKeyUsageException.prototype);
|
|
470
|
+
return _this;
|
|
471
|
+
}
|
|
472
|
+
return InvalidKeyUsageException;
|
|
473
|
+
}(__BaseException));
|
|
474
|
+
export { InvalidKeyUsageException };
|
|
475
|
+
var KeyUnavailableException = (function (_super) {
|
|
476
|
+
__extends(KeyUnavailableException, _super);
|
|
477
|
+
function KeyUnavailableException(opts) {
|
|
478
|
+
var _this = _super.call(this, __assign({ name: "KeyUnavailableException", $fault: "server" }, opts)) || this;
|
|
479
|
+
_this.name = "KeyUnavailableException";
|
|
480
|
+
_this.$fault = "server";
|
|
481
|
+
Object.setPrototypeOf(_this, KeyUnavailableException.prototype);
|
|
482
|
+
return _this;
|
|
483
|
+
}
|
|
484
|
+
return KeyUnavailableException;
|
|
485
|
+
}(__BaseException));
|
|
486
|
+
export { KeyUnavailableException };
|
|
487
|
+
var InvalidMarkerException = (function (_super) {
|
|
488
|
+
__extends(InvalidMarkerException, _super);
|
|
489
|
+
function InvalidMarkerException(opts) {
|
|
490
|
+
var _this = _super.call(this, __assign({ name: "InvalidMarkerException", $fault: "client" }, opts)) || this;
|
|
491
|
+
_this.name = "InvalidMarkerException";
|
|
492
|
+
_this.$fault = "client";
|
|
493
|
+
Object.setPrototypeOf(_this, InvalidMarkerException.prototype);
|
|
494
|
+
return _this;
|
|
495
|
+
}
|
|
496
|
+
return InvalidMarkerException;
|
|
497
|
+
}(__BaseException));
|
|
498
|
+
export { InvalidMarkerException };
|
|
499
|
+
var ExpiredImportTokenException = (function (_super) {
|
|
500
|
+
__extends(ExpiredImportTokenException, _super);
|
|
501
|
+
function ExpiredImportTokenException(opts) {
|
|
502
|
+
var _this = _super.call(this, __assign({ name: "ExpiredImportTokenException", $fault: "client" }, opts)) || this;
|
|
503
|
+
_this.name = "ExpiredImportTokenException";
|
|
504
|
+
_this.$fault = "client";
|
|
505
|
+
Object.setPrototypeOf(_this, ExpiredImportTokenException.prototype);
|
|
506
|
+
return _this;
|
|
507
|
+
}
|
|
508
|
+
return ExpiredImportTokenException;
|
|
509
|
+
}(__BaseException));
|
|
510
|
+
export { ExpiredImportTokenException };
|
|
510
511
|
export var WrappingKeySpec;
|
|
511
512
|
(function (WrappingKeySpec) {
|
|
512
513
|
WrappingKeySpec["RSA_2048"] = "RSA_2048";
|
|
513
514
|
})(WrappingKeySpec || (WrappingKeySpec = {}));
|
|
514
|
-
|
|
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
|
-
}
|
|
515
|
+
var IncorrectKeyMaterialException = (function (_super) {
|
|
516
|
+
__extends(IncorrectKeyMaterialException, _super);
|
|
517
|
+
function IncorrectKeyMaterialException(opts) {
|
|
518
|
+
var _this = _super.call(this, __assign({ name: "IncorrectKeyMaterialException", $fault: "client" }, opts)) || this;
|
|
519
|
+
_this.name = "IncorrectKeyMaterialException";
|
|
520
|
+
_this.$fault = "client";
|
|
521
|
+
Object.setPrototypeOf(_this, IncorrectKeyMaterialException.prototype);
|
|
522
|
+
return _this;
|
|
523
|
+
}
|
|
524
|
+
return IncorrectKeyMaterialException;
|
|
525
|
+
}(__BaseException));
|
|
526
|
+
export { IncorrectKeyMaterialException };
|
|
527
|
+
var InvalidImportTokenException = (function (_super) {
|
|
528
|
+
__extends(InvalidImportTokenException, _super);
|
|
529
|
+
function InvalidImportTokenException(opts) {
|
|
530
|
+
var _this = _super.call(this, __assign({ name: "InvalidImportTokenException", $fault: "client" }, opts)) || this;
|
|
531
|
+
_this.name = "InvalidImportTokenException";
|
|
532
|
+
_this.$fault = "client";
|
|
533
|
+
Object.setPrototypeOf(_this, InvalidImportTokenException.prototype);
|
|
534
|
+
return _this;
|
|
535
|
+
}
|
|
536
|
+
return InvalidImportTokenException;
|
|
537
|
+
}(__BaseException));
|
|
538
|
+
export { InvalidImportTokenException };
|
|
539
|
+
var InvalidGrantIdException = (function (_super) {
|
|
540
|
+
__extends(InvalidGrantIdException, _super);
|
|
541
|
+
function InvalidGrantIdException(opts) {
|
|
542
|
+
var _this = _super.call(this, __assign({ name: "InvalidGrantIdException", $fault: "client" }, opts)) || this;
|
|
543
|
+
_this.name = "InvalidGrantIdException";
|
|
544
|
+
_this.$fault = "client";
|
|
545
|
+
Object.setPrototypeOf(_this, InvalidGrantIdException.prototype);
|
|
546
|
+
return _this;
|
|
547
|
+
}
|
|
548
|
+
return InvalidGrantIdException;
|
|
549
|
+
}(__BaseException));
|
|
550
|
+
export { InvalidGrantIdException };
|
|
551
|
+
var KMSInvalidMacException = (function (_super) {
|
|
552
|
+
__extends(KMSInvalidMacException, _super);
|
|
553
|
+
function KMSInvalidMacException(opts) {
|
|
554
|
+
var _this = _super.call(this, __assign({ name: "KMSInvalidMacException", $fault: "client" }, opts)) || this;
|
|
555
|
+
_this.name = "KMSInvalidMacException";
|
|
556
|
+
_this.$fault = "client";
|
|
557
|
+
Object.setPrototypeOf(_this, KMSInvalidMacException.prototype);
|
|
558
|
+
return _this;
|
|
559
|
+
}
|
|
560
|
+
return KMSInvalidMacException;
|
|
561
|
+
}(__BaseException));
|
|
562
|
+
export { KMSInvalidMacException };
|
|
563
|
+
var KMSInvalidSignatureException = (function (_super) {
|
|
564
|
+
__extends(KMSInvalidSignatureException, _super);
|
|
565
|
+
function KMSInvalidSignatureException(opts) {
|
|
566
|
+
var _this = _super.call(this, __assign({ name: "KMSInvalidSignatureException", $fault: "client" }, opts)) || this;
|
|
567
|
+
_this.name = "KMSInvalidSignatureException";
|
|
568
|
+
_this.$fault = "client";
|
|
569
|
+
Object.setPrototypeOf(_this, KMSInvalidSignatureException.prototype);
|
|
570
|
+
return _this;
|
|
571
|
+
}
|
|
572
|
+
return KMSInvalidSignatureException;
|
|
573
|
+
}(__BaseException));
|
|
574
|
+
export { KMSInvalidSignatureException };
|
|
574
575
|
export var MessageType;
|
|
575
576
|
(function (MessageType) {
|
|
576
577
|
MessageType["DIGEST"] = "DIGEST";
|
|
577
578
|
MessageType["RAW"] = "RAW";
|
|
578
579
|
})(MessageType || (MessageType = {}));
|
|
579
|
-
export
|
|
580
|
-
|
|
581
|
-
});
|
|
582
|
-
export
|
|
583
|
-
|
|
584
|
-
});
|
|
585
|
-
export
|
|
586
|
-
|
|
587
|
-
});
|
|
588
|
-
export
|
|
589
|
-
|
|
590
|
-
});
|
|
591
|
-
export
|
|
592
|
-
|
|
593
|
-
});
|
|
594
|
-
export
|
|
595
|
-
|
|
596
|
-
});
|
|
597
|
-
export
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
});
|
|
601
|
-
export
|
|
602
|
-
|
|
603
|
-
});
|
|
604
|
-
export
|
|
605
|
-
|
|
606
|
-
});
|
|
607
|
-
export
|
|
608
|
-
|
|
609
|
-
});
|
|
610
|
-
export
|
|
611
|
-
|
|
612
|
-
});
|
|
613
|
-
export
|
|
614
|
-
|
|
615
|
-
});
|
|
616
|
-
export
|
|
617
|
-
|
|
618
|
-
});
|
|
619
|
-
export
|
|
620
|
-
|
|
621
|
-
});
|
|
622
|
-
export
|
|
623
|
-
|
|
624
|
-
});
|
|
625
|
-
export
|
|
626
|
-
|
|
627
|
-
});
|
|
628
|
-
export
|
|
629
|
-
|
|
630
|
-
});
|
|
631
|
-
export
|
|
632
|
-
|
|
633
|
-
});
|
|
634
|
-
export
|
|
635
|
-
|
|
636
|
-
});
|
|
637
|
-
export
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
});
|
|
641
|
-
export
|
|
642
|
-
|
|
643
|
-
});
|
|
644
|
-
export
|
|
645
|
-
|
|
646
|
-
});
|
|
647
|
-
export
|
|
648
|
-
|
|
649
|
-
});
|
|
650
|
-
export
|
|
651
|
-
|
|
652
|
-
});
|
|
653
|
-
export
|
|
654
|
-
|
|
655
|
-
});
|
|
656
|
-
export
|
|
657
|
-
|
|
658
|
-
});
|
|
659
|
-
export
|
|
660
|
-
|
|
661
|
-
});
|
|
662
|
-
export
|
|
663
|
-
|
|
664
|
-
});
|
|
665
|
-
export
|
|
666
|
-
|
|
667
|
-
});
|
|
668
|
-
export
|
|
669
|
-
|
|
670
|
-
});
|
|
671
|
-
export
|
|
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
|
-
});
|
|
580
|
+
export var AliasListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
581
|
+
export var CancelKeyDeletionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
582
|
+
export var CancelKeyDeletionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
583
|
+
export var ConnectCustomKeyStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
584
|
+
export var ConnectCustomKeyStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
585
|
+
export var CreateAliasRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
586
|
+
export var CreateCustomKeyStoreRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.KeyStorePassword && { KeyStorePassword: SENSITIVE_STRING }))); };
|
|
587
|
+
export var CreateCustomKeyStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
588
|
+
export var GrantConstraintsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
589
|
+
export var CreateGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
590
|
+
export var CreateGrantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
591
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
592
|
+
export var CreateKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
593
|
+
export var MultiRegionKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
594
|
+
export var MultiRegionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
595
|
+
export var KeyMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
596
|
+
export var CreateKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
597
|
+
export var CustomKeyStoresListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
598
|
+
export var DecryptRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
599
|
+
export var DecryptResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Plaintext && { Plaintext: SENSITIVE_STRING }))); };
|
|
600
|
+
export var DeleteAliasRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
601
|
+
export var DeleteCustomKeyStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
602
|
+
export var DeleteCustomKeyStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
603
|
+
export var DeleteImportedKeyMaterialRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
604
|
+
export var DescribeCustomKeyStoresRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
605
|
+
export var DescribeCustomKeyStoresResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
606
|
+
export var DescribeKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
607
|
+
export var DescribeKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
608
|
+
export var DisableKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
609
|
+
export var DisableKeyRotationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
610
|
+
export var DisconnectCustomKeyStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
611
|
+
export var DisconnectCustomKeyStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
612
|
+
export var EnableKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
613
|
+
export var EnableKeyRotationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
614
|
+
export var EncryptRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Plaintext && { Plaintext: SENSITIVE_STRING }))); };
|
|
615
|
+
export var EncryptResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
616
|
+
export var GenerateDataKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
617
|
+
export var GenerateDataKeyResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Plaintext && { Plaintext: SENSITIVE_STRING }))); };
|
|
618
|
+
export var GenerateDataKeyPairRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
619
|
+
export var GenerateDataKeyPairResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PrivateKeyPlaintext && { PrivateKeyPlaintext: SENSITIVE_STRING }))); };
|
|
620
|
+
export var GenerateDataKeyPairWithoutPlaintextRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
621
|
+
export var GenerateDataKeyPairWithoutPlaintextResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
622
|
+
export var GenerateDataKeyWithoutPlaintextRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
623
|
+
export var GenerateDataKeyWithoutPlaintextResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
624
|
+
export var GenerateMacRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Message && { Message: SENSITIVE_STRING }))); };
|
|
625
|
+
export var GenerateMacResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
626
|
+
export var GenerateRandomRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
627
|
+
export var GenerateRandomResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Plaintext && { Plaintext: SENSITIVE_STRING }))); };
|
|
628
|
+
export var GetKeyPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
629
|
+
export var GetKeyPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
630
|
+
export var GetKeyRotationStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
631
|
+
export var GetKeyRotationStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
632
|
+
export var GetParametersForImportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
633
|
+
export var GetParametersForImportResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PublicKey && { PublicKey: SENSITIVE_STRING }))); };
|
|
634
|
+
export var GetPublicKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
635
|
+
export var GetPublicKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
636
|
+
export var GrantListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
637
|
+
export var ImportKeyMaterialRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
638
|
+
export var ImportKeyMaterialResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
639
|
+
export var KeyListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
640
|
+
export var ListAliasesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
641
|
+
export var ListAliasesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
642
|
+
export var ListGrantsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
643
|
+
export var ListGrantsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
644
|
+
export var ListKeyPoliciesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
645
|
+
export var ListKeyPoliciesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
646
|
+
export var ListKeysRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
647
|
+
export var ListKeysResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
648
|
+
export var ListResourceTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
649
|
+
export var ListResourceTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
650
|
+
export var ListRetirableGrantsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
651
|
+
export var PutKeyPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
652
|
+
export var ReEncryptRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
653
|
+
export var ReEncryptResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
654
|
+
export var ReplicateKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
655
|
+
export var ReplicateKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
656
|
+
export var RetireGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
657
|
+
export var RevokeGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
658
|
+
export var ScheduleKeyDeletionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
659
|
+
export var ScheduleKeyDeletionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
660
|
+
export var SignRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Message && { Message: SENSITIVE_STRING }))); };
|
|
661
|
+
export var SignResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
662
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
663
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
|
+
export var UpdateAliasRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
665
|
+
export var UpdateCustomKeyStoreRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.KeyStorePassword && { KeyStorePassword: SENSITIVE_STRING }))); };
|
|
666
|
+
export var UpdateCustomKeyStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
667
|
+
export var UpdateKeyDescriptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
668
|
+
export var UpdatePrimaryRegionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
669
|
+
export var VerifyRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Message && { Message: SENSITIVE_STRING }))); };
|
|
670
|
+
export var VerifyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
671
|
+
export var VerifyMacRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Message && { Message: SENSITIVE_STRING }))); };
|
|
672
|
+
export var VerifyMacResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|