@aws-sdk/client-kms 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/KMS.d.ts +0 -50
- package/dist-types/ts3.4/KMSClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CancelKeyDeletionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ConnectCustomKeyStoreCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateCustomKeyStoreCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DecryptCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteCustomKeyStoreCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteImportedKeyMaterialCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeCustomKeyStoresCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableKeyRotationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisconnectCustomKeyStoreCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableKeyRotationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EncryptCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateDataKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateDataKeyPairCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateMacCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateRandomCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetKeyPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetKeyRotationStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetParametersForImportCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ImportKeyMaterialCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGrantsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListKeyPoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListResourceTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListRetirableGrantsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutKeyPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ReEncryptCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ReplicateKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RetireGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RevokeGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ScheduleKeyDeletionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SignCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateCustomKeyStoreCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateKeyDescriptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdatePrimaryRegionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/VerifyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/VerifyMacCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/KMSServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -379
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -5,23 +5,16 @@ export declare enum AlgorithmSpec {
|
|
|
5
5
|
RSAES_OAEP_SHA_256 = "RSAES_OAEP_SHA_256",
|
|
6
6
|
RSAES_PKCS1_V1_5 = "RSAES_PKCS1_V1_5",
|
|
7
7
|
}
|
|
8
|
-
|
|
9
8
|
export interface AliasListEntry {
|
|
10
9
|
AliasName?: string;
|
|
11
|
-
|
|
12
10
|
AliasArn?: string;
|
|
13
|
-
|
|
14
11
|
TargetKeyId?: string;
|
|
15
|
-
|
|
16
12
|
CreationDate?: Date;
|
|
17
|
-
|
|
18
13
|
LastUpdatedDate?: Date;
|
|
19
14
|
}
|
|
20
|
-
|
|
21
15
|
export declare class AlreadyExistsException extends __BaseException {
|
|
22
16
|
readonly name: "AlreadyExistsException";
|
|
23
17
|
readonly $fault: "client";
|
|
24
|
-
|
|
25
18
|
constructor(
|
|
26
19
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
27
20
|
);
|
|
@@ -32,63 +25,49 @@ export interface CancelKeyDeletionRequest {
|
|
|
32
25
|
export interface CancelKeyDeletionResponse {
|
|
33
26
|
KeyId?: string;
|
|
34
27
|
}
|
|
35
|
-
|
|
36
28
|
export declare class DependencyTimeoutException extends __BaseException {
|
|
37
29
|
readonly name: "DependencyTimeoutException";
|
|
38
30
|
readonly $fault: "server";
|
|
39
|
-
|
|
40
31
|
constructor(
|
|
41
32
|
opts: __ExceptionOptionType<DependencyTimeoutException, __BaseException>
|
|
42
33
|
);
|
|
43
34
|
}
|
|
44
|
-
|
|
45
35
|
export declare class InvalidArnException extends __BaseException {
|
|
46
36
|
readonly name: "InvalidArnException";
|
|
47
37
|
readonly $fault: "client";
|
|
48
|
-
|
|
49
38
|
constructor(
|
|
50
39
|
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
51
40
|
);
|
|
52
41
|
}
|
|
53
|
-
|
|
54
42
|
export declare class KMSInternalException extends __BaseException {
|
|
55
43
|
readonly name: "KMSInternalException";
|
|
56
44
|
readonly $fault: "server";
|
|
57
|
-
|
|
58
45
|
constructor(
|
|
59
46
|
opts: __ExceptionOptionType<KMSInternalException, __BaseException>
|
|
60
47
|
);
|
|
61
48
|
}
|
|
62
|
-
|
|
63
49
|
export declare class KMSInvalidStateException extends __BaseException {
|
|
64
50
|
readonly name: "KMSInvalidStateException";
|
|
65
51
|
readonly $fault: "client";
|
|
66
|
-
|
|
67
52
|
constructor(
|
|
68
53
|
opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>
|
|
69
54
|
);
|
|
70
55
|
}
|
|
71
|
-
|
|
72
56
|
export declare class NotFoundException extends __BaseException {
|
|
73
57
|
readonly name: "NotFoundException";
|
|
74
58
|
readonly $fault: "client";
|
|
75
|
-
|
|
76
59
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
77
60
|
}
|
|
78
|
-
|
|
79
61
|
export declare class CloudHsmClusterInUseException extends __BaseException {
|
|
80
62
|
readonly name: "CloudHsmClusterInUseException";
|
|
81
63
|
readonly $fault: "client";
|
|
82
|
-
|
|
83
64
|
constructor(
|
|
84
65
|
opts: __ExceptionOptionType<CloudHsmClusterInUseException, __BaseException>
|
|
85
66
|
);
|
|
86
67
|
}
|
|
87
|
-
|
|
88
68
|
export declare class CloudHsmClusterInvalidConfigurationException extends __BaseException {
|
|
89
69
|
readonly name: "CloudHsmClusterInvalidConfigurationException";
|
|
90
70
|
readonly $fault: "client";
|
|
91
|
-
|
|
92
71
|
constructor(
|
|
93
72
|
opts: __ExceptionOptionType<
|
|
94
73
|
CloudHsmClusterInvalidConfigurationException,
|
|
@@ -96,11 +75,9 @@ export declare class CloudHsmClusterInvalidConfigurationException extends __Base
|
|
|
96
75
|
>
|
|
97
76
|
);
|
|
98
77
|
}
|
|
99
|
-
|
|
100
78
|
export declare class CloudHsmClusterNotActiveException extends __BaseException {
|
|
101
79
|
readonly name: "CloudHsmClusterNotActiveException";
|
|
102
80
|
readonly $fault: "client";
|
|
103
|
-
|
|
104
81
|
constructor(
|
|
105
82
|
opts: __ExceptionOptionType<
|
|
106
83
|
CloudHsmClusterNotActiveException,
|
|
@@ -108,11 +85,9 @@ export declare class CloudHsmClusterNotActiveException extends __BaseException {
|
|
|
108
85
|
>
|
|
109
86
|
);
|
|
110
87
|
}
|
|
111
|
-
|
|
112
88
|
export declare class CloudHsmClusterNotFoundException extends __BaseException {
|
|
113
89
|
readonly name: "CloudHsmClusterNotFoundException";
|
|
114
90
|
readonly $fault: "client";
|
|
115
|
-
|
|
116
91
|
constructor(
|
|
117
92
|
opts: __ExceptionOptionType<
|
|
118
93
|
CloudHsmClusterNotFoundException,
|
|
@@ -120,11 +95,9 @@ export declare class CloudHsmClusterNotFoundException extends __BaseException {
|
|
|
120
95
|
>
|
|
121
96
|
);
|
|
122
97
|
}
|
|
123
|
-
|
|
124
98
|
export declare class CloudHsmClusterNotRelatedException extends __BaseException {
|
|
125
99
|
readonly name: "CloudHsmClusterNotRelatedException";
|
|
126
100
|
readonly $fault: "client";
|
|
127
|
-
|
|
128
101
|
constructor(
|
|
129
102
|
opts: __ExceptionOptionType<
|
|
130
103
|
CloudHsmClusterNotRelatedException,
|
|
@@ -136,11 +109,9 @@ export interface ConnectCustomKeyStoreRequest {
|
|
|
136
109
|
CustomKeyStoreId: string | undefined;
|
|
137
110
|
}
|
|
138
111
|
export interface ConnectCustomKeyStoreResponse {}
|
|
139
|
-
|
|
140
112
|
export declare class CustomKeyStoreInvalidStateException extends __BaseException {
|
|
141
113
|
readonly name: "CustomKeyStoreInvalidStateException";
|
|
142
114
|
readonly $fault: "client";
|
|
143
|
-
|
|
144
115
|
constructor(
|
|
145
116
|
opts: __ExceptionOptionType<
|
|
146
117
|
CustomKeyStoreInvalidStateException,
|
|
@@ -148,11 +119,9 @@ export declare class CustomKeyStoreInvalidStateException extends __BaseException
|
|
|
148
119
|
>
|
|
149
120
|
);
|
|
150
121
|
}
|
|
151
|
-
|
|
152
122
|
export declare class CustomKeyStoreNotFoundException extends __BaseException {
|
|
153
123
|
readonly name: "CustomKeyStoreNotFoundException";
|
|
154
124
|
readonly $fault: "client";
|
|
155
|
-
|
|
156
125
|
constructor(
|
|
157
126
|
opts: __ExceptionOptionType<
|
|
158
127
|
CustomKeyStoreNotFoundException,
|
|
@@ -181,44 +150,34 @@ export declare enum ConnectionStateType {
|
|
|
181
150
|
}
|
|
182
151
|
export interface CreateAliasRequest {
|
|
183
152
|
AliasName: string | undefined;
|
|
184
|
-
|
|
185
153
|
TargetKeyId: string | undefined;
|
|
186
154
|
}
|
|
187
|
-
|
|
188
155
|
export declare class InvalidAliasNameException extends __BaseException {
|
|
189
156
|
readonly name: "InvalidAliasNameException";
|
|
190
157
|
readonly $fault: "client";
|
|
191
|
-
|
|
192
158
|
constructor(
|
|
193
159
|
opts: __ExceptionOptionType<InvalidAliasNameException, __BaseException>
|
|
194
160
|
);
|
|
195
161
|
}
|
|
196
|
-
|
|
197
162
|
export declare class LimitExceededException extends __BaseException {
|
|
198
163
|
readonly name: "LimitExceededException";
|
|
199
164
|
readonly $fault: "client";
|
|
200
|
-
|
|
201
165
|
constructor(
|
|
202
166
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
203
167
|
);
|
|
204
168
|
}
|
|
205
169
|
export interface CreateCustomKeyStoreRequest {
|
|
206
170
|
CustomKeyStoreName: string | undefined;
|
|
207
|
-
|
|
208
171
|
CloudHsmClusterId?: string;
|
|
209
|
-
|
|
210
172
|
TrustAnchorCertificate?: string;
|
|
211
|
-
|
|
212
173
|
KeyStorePassword?: string;
|
|
213
174
|
}
|
|
214
175
|
export interface CreateCustomKeyStoreResponse {
|
|
215
176
|
CustomKeyStoreId?: string;
|
|
216
177
|
}
|
|
217
|
-
|
|
218
178
|
export declare class CustomKeyStoreNameInUseException extends __BaseException {
|
|
219
179
|
readonly name: "CustomKeyStoreNameInUseException";
|
|
220
180
|
readonly $fault: "client";
|
|
221
|
-
|
|
222
181
|
constructor(
|
|
223
182
|
opts: __ExceptionOptionType<
|
|
224
183
|
CustomKeyStoreNameInUseException,
|
|
@@ -226,19 +185,15 @@ export declare class CustomKeyStoreNameInUseException extends __BaseException {
|
|
|
226
185
|
>
|
|
227
186
|
);
|
|
228
187
|
}
|
|
229
|
-
|
|
230
188
|
export declare class IncorrectTrustAnchorException extends __BaseException {
|
|
231
189
|
readonly name: "IncorrectTrustAnchorException";
|
|
232
190
|
readonly $fault: "client";
|
|
233
|
-
|
|
234
191
|
constructor(
|
|
235
192
|
opts: __ExceptionOptionType<IncorrectTrustAnchorException, __BaseException>
|
|
236
193
|
);
|
|
237
194
|
}
|
|
238
|
-
|
|
239
195
|
export interface GrantConstraints {
|
|
240
196
|
EncryptionContextSubset?: Record<string, string>;
|
|
241
|
-
|
|
242
197
|
EncryptionContextEquals?: Record<string, string>;
|
|
243
198
|
}
|
|
244
199
|
export declare enum GrantOperation {
|
|
@@ -261,36 +216,25 @@ export declare enum GrantOperation {
|
|
|
261
216
|
}
|
|
262
217
|
export interface CreateGrantRequest {
|
|
263
218
|
KeyId: string | undefined;
|
|
264
|
-
|
|
265
219
|
GranteePrincipal: string | undefined;
|
|
266
|
-
|
|
267
220
|
RetiringPrincipal?: string;
|
|
268
|
-
|
|
269
221
|
Operations: (GrantOperation | string)[] | undefined;
|
|
270
|
-
|
|
271
222
|
Constraints?: GrantConstraints;
|
|
272
|
-
|
|
273
223
|
GrantTokens?: string[];
|
|
274
|
-
|
|
275
224
|
Name?: string;
|
|
276
225
|
}
|
|
277
226
|
export interface CreateGrantResponse {
|
|
278
227
|
GrantToken?: string;
|
|
279
|
-
|
|
280
228
|
GrantId?: string;
|
|
281
229
|
}
|
|
282
|
-
|
|
283
230
|
export declare class DisabledException extends __BaseException {
|
|
284
231
|
readonly name: "DisabledException";
|
|
285
232
|
readonly $fault: "client";
|
|
286
|
-
|
|
287
233
|
constructor(opts: __ExceptionOptionType<DisabledException, __BaseException>);
|
|
288
234
|
}
|
|
289
|
-
|
|
290
235
|
export declare class InvalidGrantTokenException extends __BaseException {
|
|
291
236
|
readonly name: "InvalidGrantTokenException";
|
|
292
237
|
readonly $fault: "client";
|
|
293
|
-
|
|
294
238
|
constructor(
|
|
295
239
|
opts: __ExceptionOptionType<InvalidGrantTokenException, __BaseException>
|
|
296
240
|
);
|
|
@@ -335,31 +279,20 @@ export declare enum OriginType {
|
|
|
335
279
|
AWS_KMS = "AWS_KMS",
|
|
336
280
|
EXTERNAL = "EXTERNAL",
|
|
337
281
|
}
|
|
338
|
-
|
|
339
282
|
export interface Tag {
|
|
340
283
|
TagKey: string | undefined;
|
|
341
|
-
|
|
342
284
|
TagValue: string | undefined;
|
|
343
285
|
}
|
|
344
286
|
export interface CreateKeyRequest {
|
|
345
287
|
Policy?: string;
|
|
346
|
-
|
|
347
288
|
Description?: string;
|
|
348
|
-
|
|
349
289
|
KeyUsage?: KeyUsageType | string;
|
|
350
|
-
|
|
351
290
|
CustomerMasterKeySpec?: CustomerMasterKeySpec | string;
|
|
352
|
-
|
|
353
291
|
KeySpec?: KeySpec | string;
|
|
354
|
-
|
|
355
292
|
Origin?: OriginType | string;
|
|
356
|
-
|
|
357
293
|
CustomKeyStoreId?: string;
|
|
358
|
-
|
|
359
294
|
BypassPolicyLockoutSafetyCheck?: boolean;
|
|
360
|
-
|
|
361
295
|
Tags?: Tag[];
|
|
362
|
-
|
|
363
296
|
MultiRegion?: boolean;
|
|
364
297
|
}
|
|
365
298
|
export declare enum EncryptionAlgorithmSpec {
|
|
@@ -396,18 +329,13 @@ export declare enum MultiRegionKeyType {
|
|
|
396
329
|
PRIMARY = "PRIMARY",
|
|
397
330
|
REPLICA = "REPLICA",
|
|
398
331
|
}
|
|
399
|
-
|
|
400
332
|
export interface MultiRegionKey {
|
|
401
333
|
Arn?: string;
|
|
402
|
-
|
|
403
334
|
Region?: string;
|
|
404
335
|
}
|
|
405
|
-
|
|
406
336
|
export interface MultiRegionConfiguration {
|
|
407
337
|
MultiRegionKeyType?: MultiRegionKeyType | string;
|
|
408
|
-
|
|
409
338
|
PrimaryKey?: MultiRegionKey;
|
|
410
|
-
|
|
411
339
|
ReplicaKeys?: MultiRegionKey[];
|
|
412
340
|
}
|
|
413
341
|
export declare enum SigningAlgorithmSpec {
|
|
@@ -422,62 +350,37 @@ export declare enum SigningAlgorithmSpec {
|
|
|
422
350
|
RSASSA_PSS_SHA_512 = "RSASSA_PSS_SHA_512",
|
|
423
351
|
SM2DSA = "SM2DSA",
|
|
424
352
|
}
|
|
425
|
-
|
|
426
353
|
export interface KeyMetadata {
|
|
427
354
|
AWSAccountId?: string;
|
|
428
|
-
|
|
429
355
|
KeyId: string | undefined;
|
|
430
|
-
|
|
431
356
|
Arn?: string;
|
|
432
|
-
|
|
433
357
|
CreationDate?: Date;
|
|
434
|
-
|
|
435
358
|
Enabled?: boolean;
|
|
436
|
-
|
|
437
359
|
Description?: string;
|
|
438
|
-
|
|
439
360
|
KeyUsage?: KeyUsageType | string;
|
|
440
|
-
|
|
441
361
|
KeyState?: KeyState | string;
|
|
442
|
-
|
|
443
362
|
DeletionDate?: Date;
|
|
444
|
-
|
|
445
363
|
ValidTo?: Date;
|
|
446
|
-
|
|
447
364
|
Origin?: OriginType | string;
|
|
448
|
-
|
|
449
365
|
CustomKeyStoreId?: string;
|
|
450
|
-
|
|
451
366
|
CloudHsmClusterId?: string;
|
|
452
|
-
|
|
453
367
|
ExpirationModel?: ExpirationModelType | string;
|
|
454
|
-
|
|
455
368
|
KeyManager?: KeyManagerType | string;
|
|
456
|
-
|
|
457
369
|
CustomerMasterKeySpec?: CustomerMasterKeySpec | string;
|
|
458
|
-
|
|
459
370
|
KeySpec?: KeySpec | string;
|
|
460
|
-
|
|
461
371
|
EncryptionAlgorithms?: (EncryptionAlgorithmSpec | string)[];
|
|
462
|
-
|
|
463
372
|
SigningAlgorithms?: (SigningAlgorithmSpec | string)[];
|
|
464
|
-
|
|
465
373
|
MultiRegion?: boolean;
|
|
466
|
-
|
|
467
374
|
MultiRegionConfiguration?: MultiRegionConfiguration;
|
|
468
|
-
|
|
469
375
|
PendingDeletionWindowInDays?: number;
|
|
470
|
-
|
|
471
376
|
MacAlgorithms?: (MacAlgorithmSpec | string)[];
|
|
472
377
|
}
|
|
473
378
|
export interface CreateKeyResponse {
|
|
474
379
|
KeyMetadata?: KeyMetadata;
|
|
475
380
|
}
|
|
476
|
-
|
|
477
381
|
export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
478
382
|
readonly name: "MalformedPolicyDocumentException";
|
|
479
383
|
readonly $fault: "client";
|
|
480
|
-
|
|
481
384
|
constructor(
|
|
482
385
|
opts: __ExceptionOptionType<
|
|
483
386
|
MalformedPolicyDocumentException,
|
|
@@ -485,45 +388,32 @@ export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
|
485
388
|
>
|
|
486
389
|
);
|
|
487
390
|
}
|
|
488
|
-
|
|
489
391
|
export declare class TagException extends __BaseException {
|
|
490
392
|
readonly name: "TagException";
|
|
491
393
|
readonly $fault: "client";
|
|
492
|
-
|
|
493
394
|
constructor(opts: __ExceptionOptionType<TagException, __BaseException>);
|
|
494
395
|
}
|
|
495
|
-
|
|
496
396
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
497
397
|
readonly name: "UnsupportedOperationException";
|
|
498
398
|
readonly $fault: "client";
|
|
499
|
-
|
|
500
399
|
constructor(
|
|
501
400
|
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
502
401
|
);
|
|
503
402
|
}
|
|
504
|
-
|
|
505
403
|
export declare class CustomKeyStoreHasCMKsException extends __BaseException {
|
|
506
404
|
readonly name: "CustomKeyStoreHasCMKsException";
|
|
507
405
|
readonly $fault: "client";
|
|
508
|
-
|
|
509
406
|
constructor(
|
|
510
407
|
opts: __ExceptionOptionType<CustomKeyStoreHasCMKsException, __BaseException>
|
|
511
408
|
);
|
|
512
409
|
}
|
|
513
|
-
|
|
514
410
|
export interface CustomKeyStoresListEntry {
|
|
515
411
|
CustomKeyStoreId?: string;
|
|
516
|
-
|
|
517
412
|
CustomKeyStoreName?: string;
|
|
518
|
-
|
|
519
413
|
CloudHsmClusterId?: string;
|
|
520
|
-
|
|
521
414
|
TrustAnchorCertificate?: string;
|
|
522
|
-
|
|
523
415
|
ConnectionState?: ConnectionStateType | string;
|
|
524
|
-
|
|
525
416
|
ConnectionErrorCode?: ConnectionErrorCodeType | string;
|
|
526
|
-
|
|
527
417
|
CreationDate?: Date;
|
|
528
418
|
}
|
|
529
419
|
export declare enum DataKeyPairSpec {
|
|
@@ -542,54 +432,40 @@ export declare enum DataKeySpec {
|
|
|
542
432
|
}
|
|
543
433
|
export interface DecryptRequest {
|
|
544
434
|
CiphertextBlob: Uint8Array | undefined;
|
|
545
|
-
|
|
546
435
|
EncryptionContext?: Record<string, string>;
|
|
547
|
-
|
|
548
436
|
GrantTokens?: string[];
|
|
549
|
-
|
|
550
437
|
KeyId?: string;
|
|
551
|
-
|
|
552
438
|
EncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
553
439
|
}
|
|
554
440
|
export interface DecryptResponse {
|
|
555
441
|
KeyId?: string;
|
|
556
|
-
|
|
557
442
|
Plaintext?: Uint8Array;
|
|
558
|
-
|
|
559
443
|
EncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
560
444
|
}
|
|
561
|
-
|
|
562
445
|
export declare class IncorrectKeyException extends __BaseException {
|
|
563
446
|
readonly name: "IncorrectKeyException";
|
|
564
447
|
readonly $fault: "client";
|
|
565
|
-
|
|
566
448
|
constructor(
|
|
567
449
|
opts: __ExceptionOptionType<IncorrectKeyException, __BaseException>
|
|
568
450
|
);
|
|
569
451
|
}
|
|
570
|
-
|
|
571
452
|
export declare class InvalidCiphertextException extends __BaseException {
|
|
572
453
|
readonly name: "InvalidCiphertextException";
|
|
573
454
|
readonly $fault: "client";
|
|
574
|
-
|
|
575
455
|
constructor(
|
|
576
456
|
opts: __ExceptionOptionType<InvalidCiphertextException, __BaseException>
|
|
577
457
|
);
|
|
578
458
|
}
|
|
579
|
-
|
|
580
459
|
export declare class InvalidKeyUsageException extends __BaseException {
|
|
581
460
|
readonly name: "InvalidKeyUsageException";
|
|
582
461
|
readonly $fault: "client";
|
|
583
|
-
|
|
584
462
|
constructor(
|
|
585
463
|
opts: __ExceptionOptionType<InvalidKeyUsageException, __BaseException>
|
|
586
464
|
);
|
|
587
465
|
}
|
|
588
|
-
|
|
589
466
|
export declare class KeyUnavailableException extends __BaseException {
|
|
590
467
|
readonly name: "KeyUnavailableException";
|
|
591
468
|
readonly $fault: "server";
|
|
592
|
-
|
|
593
469
|
constructor(
|
|
594
470
|
opts: __ExceptionOptionType<KeyUnavailableException, __BaseException>
|
|
595
471
|
);
|
|
@@ -606,32 +482,24 @@ export interface DeleteImportedKeyMaterialRequest {
|
|
|
606
482
|
}
|
|
607
483
|
export interface DescribeCustomKeyStoresRequest {
|
|
608
484
|
CustomKeyStoreId?: string;
|
|
609
|
-
|
|
610
485
|
CustomKeyStoreName?: string;
|
|
611
|
-
|
|
612
486
|
Limit?: number;
|
|
613
|
-
|
|
614
487
|
Marker?: string;
|
|
615
488
|
}
|
|
616
489
|
export interface DescribeCustomKeyStoresResponse {
|
|
617
490
|
CustomKeyStores?: CustomKeyStoresListEntry[];
|
|
618
|
-
|
|
619
491
|
NextMarker?: string;
|
|
620
|
-
|
|
621
492
|
Truncated?: boolean;
|
|
622
493
|
}
|
|
623
|
-
|
|
624
494
|
export declare class InvalidMarkerException extends __BaseException {
|
|
625
495
|
readonly name: "InvalidMarkerException";
|
|
626
496
|
readonly $fault: "client";
|
|
627
|
-
|
|
628
497
|
constructor(
|
|
629
498
|
opts: __ExceptionOptionType<InvalidMarkerException, __BaseException>
|
|
630
499
|
);
|
|
631
500
|
}
|
|
632
501
|
export interface DescribeKeyRequest {
|
|
633
502
|
KeyId: string | undefined;
|
|
634
|
-
|
|
635
503
|
GrantTokens?: string[];
|
|
636
504
|
}
|
|
637
505
|
export interface DescribeKeyResponse {
|
|
@@ -655,122 +523,84 @@ export interface EnableKeyRotationRequest {
|
|
|
655
523
|
}
|
|
656
524
|
export interface EncryptRequest {
|
|
657
525
|
KeyId: string | undefined;
|
|
658
|
-
|
|
659
526
|
Plaintext: Uint8Array | undefined;
|
|
660
|
-
|
|
661
527
|
EncryptionContext?: Record<string, string>;
|
|
662
|
-
|
|
663
528
|
GrantTokens?: string[];
|
|
664
|
-
|
|
665
529
|
EncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
666
530
|
}
|
|
667
531
|
export interface EncryptResponse {
|
|
668
532
|
CiphertextBlob?: Uint8Array;
|
|
669
|
-
|
|
670
533
|
KeyId?: string;
|
|
671
|
-
|
|
672
534
|
EncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
673
535
|
}
|
|
674
|
-
|
|
675
536
|
export declare class ExpiredImportTokenException extends __BaseException {
|
|
676
537
|
readonly name: "ExpiredImportTokenException";
|
|
677
538
|
readonly $fault: "client";
|
|
678
|
-
|
|
679
539
|
constructor(
|
|
680
540
|
opts: __ExceptionOptionType<ExpiredImportTokenException, __BaseException>
|
|
681
541
|
);
|
|
682
542
|
}
|
|
683
543
|
export interface GenerateDataKeyRequest {
|
|
684
544
|
KeyId: string | undefined;
|
|
685
|
-
|
|
686
545
|
EncryptionContext?: Record<string, string>;
|
|
687
|
-
|
|
688
546
|
NumberOfBytes?: number;
|
|
689
|
-
|
|
690
547
|
KeySpec?: DataKeySpec | string;
|
|
691
|
-
|
|
692
548
|
GrantTokens?: string[];
|
|
693
549
|
}
|
|
694
550
|
export interface GenerateDataKeyResponse {
|
|
695
551
|
CiphertextBlob?: Uint8Array;
|
|
696
|
-
|
|
697
552
|
Plaintext?: Uint8Array;
|
|
698
|
-
|
|
699
553
|
KeyId?: string;
|
|
700
554
|
}
|
|
701
555
|
export interface GenerateDataKeyPairRequest {
|
|
702
556
|
EncryptionContext?: Record<string, string>;
|
|
703
|
-
|
|
704
557
|
KeyId: string | undefined;
|
|
705
|
-
|
|
706
558
|
KeyPairSpec: DataKeyPairSpec | string | undefined;
|
|
707
|
-
|
|
708
559
|
GrantTokens?: string[];
|
|
709
560
|
}
|
|
710
561
|
export interface GenerateDataKeyPairResponse {
|
|
711
562
|
PrivateKeyCiphertextBlob?: Uint8Array;
|
|
712
|
-
|
|
713
563
|
PrivateKeyPlaintext?: Uint8Array;
|
|
714
|
-
|
|
715
564
|
PublicKey?: Uint8Array;
|
|
716
|
-
|
|
717
565
|
KeyId?: string;
|
|
718
|
-
|
|
719
566
|
KeyPairSpec?: DataKeyPairSpec | string;
|
|
720
567
|
}
|
|
721
568
|
export interface GenerateDataKeyPairWithoutPlaintextRequest {
|
|
722
569
|
EncryptionContext?: Record<string, string>;
|
|
723
|
-
|
|
724
570
|
KeyId: string | undefined;
|
|
725
|
-
|
|
726
571
|
KeyPairSpec: DataKeyPairSpec | string | undefined;
|
|
727
|
-
|
|
728
572
|
GrantTokens?: string[];
|
|
729
573
|
}
|
|
730
574
|
export interface GenerateDataKeyPairWithoutPlaintextResponse {
|
|
731
575
|
PrivateKeyCiphertextBlob?: Uint8Array;
|
|
732
|
-
|
|
733
576
|
PublicKey?: Uint8Array;
|
|
734
|
-
|
|
735
577
|
KeyId?: string;
|
|
736
|
-
|
|
737
578
|
KeyPairSpec?: DataKeyPairSpec | string;
|
|
738
579
|
}
|
|
739
580
|
export interface GenerateDataKeyWithoutPlaintextRequest {
|
|
740
581
|
KeyId: string | undefined;
|
|
741
|
-
|
|
742
582
|
EncryptionContext?: Record<string, string>;
|
|
743
|
-
|
|
744
583
|
KeySpec?: DataKeySpec | string;
|
|
745
|
-
|
|
746
584
|
NumberOfBytes?: number;
|
|
747
|
-
|
|
748
585
|
GrantTokens?: string[];
|
|
749
586
|
}
|
|
750
587
|
export interface GenerateDataKeyWithoutPlaintextResponse {
|
|
751
588
|
CiphertextBlob?: Uint8Array;
|
|
752
|
-
|
|
753
589
|
KeyId?: string;
|
|
754
590
|
}
|
|
755
591
|
export interface GenerateMacRequest {
|
|
756
592
|
Message: Uint8Array | undefined;
|
|
757
|
-
|
|
758
593
|
KeyId: string | undefined;
|
|
759
|
-
|
|
760
594
|
MacAlgorithm: MacAlgorithmSpec | string | undefined;
|
|
761
|
-
|
|
762
595
|
GrantTokens?: string[];
|
|
763
596
|
}
|
|
764
597
|
export interface GenerateMacResponse {
|
|
765
598
|
Mac?: Uint8Array;
|
|
766
|
-
|
|
767
599
|
MacAlgorithm?: MacAlgorithmSpec | string;
|
|
768
|
-
|
|
769
600
|
KeyId?: string;
|
|
770
601
|
}
|
|
771
602
|
export interface GenerateRandomRequest {
|
|
772
603
|
NumberOfBytes?: number;
|
|
773
|
-
|
|
774
604
|
CustomKeyStoreId?: string;
|
|
775
605
|
}
|
|
776
606
|
export interface GenerateRandomResponse {
|
|
@@ -778,7 +608,6 @@ export interface GenerateRandomResponse {
|
|
|
778
608
|
}
|
|
779
609
|
export interface GetKeyPolicyRequest {
|
|
780
610
|
KeyId: string | undefined;
|
|
781
|
-
|
|
782
611
|
PolicyName: string | undefined;
|
|
783
612
|
}
|
|
784
613
|
export interface GetKeyPolicyResponse {
|
|
@@ -795,200 +624,140 @@ export declare enum WrappingKeySpec {
|
|
|
795
624
|
}
|
|
796
625
|
export interface GetParametersForImportRequest {
|
|
797
626
|
KeyId: string | undefined;
|
|
798
|
-
|
|
799
627
|
WrappingAlgorithm: AlgorithmSpec | string | undefined;
|
|
800
|
-
|
|
801
628
|
WrappingKeySpec: WrappingKeySpec | string | undefined;
|
|
802
629
|
}
|
|
803
630
|
export interface GetParametersForImportResponse {
|
|
804
631
|
KeyId?: string;
|
|
805
|
-
|
|
806
632
|
ImportToken?: Uint8Array;
|
|
807
|
-
|
|
808
633
|
PublicKey?: Uint8Array;
|
|
809
|
-
|
|
810
634
|
ParametersValidTo?: Date;
|
|
811
635
|
}
|
|
812
636
|
export interface GetPublicKeyRequest {
|
|
813
637
|
KeyId: string | undefined;
|
|
814
|
-
|
|
815
638
|
GrantTokens?: string[];
|
|
816
639
|
}
|
|
817
640
|
export interface GetPublicKeyResponse {
|
|
818
641
|
KeyId?: string;
|
|
819
|
-
|
|
820
642
|
PublicKey?: Uint8Array;
|
|
821
|
-
|
|
822
643
|
CustomerMasterKeySpec?: CustomerMasterKeySpec | string;
|
|
823
|
-
|
|
824
644
|
KeySpec?: KeySpec | string;
|
|
825
|
-
|
|
826
645
|
KeyUsage?: KeyUsageType | string;
|
|
827
|
-
|
|
828
646
|
EncryptionAlgorithms?: (EncryptionAlgorithmSpec | string)[];
|
|
829
|
-
|
|
830
647
|
SigningAlgorithms?: (SigningAlgorithmSpec | string)[];
|
|
831
648
|
}
|
|
832
|
-
|
|
833
649
|
export interface GrantListEntry {
|
|
834
650
|
KeyId?: string;
|
|
835
|
-
|
|
836
651
|
GrantId?: string;
|
|
837
|
-
|
|
838
652
|
Name?: string;
|
|
839
|
-
|
|
840
653
|
CreationDate?: Date;
|
|
841
|
-
|
|
842
654
|
GranteePrincipal?: string;
|
|
843
|
-
|
|
844
655
|
RetiringPrincipal?: string;
|
|
845
|
-
|
|
846
656
|
IssuingAccount?: string;
|
|
847
|
-
|
|
848
657
|
Operations?: (GrantOperation | string)[];
|
|
849
|
-
|
|
850
658
|
Constraints?: GrantConstraints;
|
|
851
659
|
}
|
|
852
660
|
export interface ImportKeyMaterialRequest {
|
|
853
661
|
KeyId: string | undefined;
|
|
854
|
-
|
|
855
662
|
ImportToken: Uint8Array | undefined;
|
|
856
|
-
|
|
857
663
|
EncryptedKeyMaterial: Uint8Array | undefined;
|
|
858
|
-
|
|
859
664
|
ValidTo?: Date;
|
|
860
|
-
|
|
861
665
|
ExpirationModel?: ExpirationModelType | string;
|
|
862
666
|
}
|
|
863
667
|
export interface ImportKeyMaterialResponse {}
|
|
864
|
-
|
|
865
668
|
export declare class IncorrectKeyMaterialException extends __BaseException {
|
|
866
669
|
readonly name: "IncorrectKeyMaterialException";
|
|
867
670
|
readonly $fault: "client";
|
|
868
|
-
|
|
869
671
|
constructor(
|
|
870
672
|
opts: __ExceptionOptionType<IncorrectKeyMaterialException, __BaseException>
|
|
871
673
|
);
|
|
872
674
|
}
|
|
873
|
-
|
|
874
675
|
export declare class InvalidImportTokenException extends __BaseException {
|
|
875
676
|
readonly name: "InvalidImportTokenException";
|
|
876
677
|
readonly $fault: "client";
|
|
877
|
-
|
|
878
678
|
constructor(
|
|
879
679
|
opts: __ExceptionOptionType<InvalidImportTokenException, __BaseException>
|
|
880
680
|
);
|
|
881
681
|
}
|
|
882
|
-
|
|
883
682
|
export declare class InvalidGrantIdException extends __BaseException {
|
|
884
683
|
readonly name: "InvalidGrantIdException";
|
|
885
684
|
readonly $fault: "client";
|
|
886
|
-
|
|
887
685
|
constructor(
|
|
888
686
|
opts: __ExceptionOptionType<InvalidGrantIdException, __BaseException>
|
|
889
687
|
);
|
|
890
688
|
}
|
|
891
|
-
|
|
892
689
|
export interface KeyListEntry {
|
|
893
690
|
KeyId?: string;
|
|
894
|
-
|
|
895
691
|
KeyArn?: string;
|
|
896
692
|
}
|
|
897
|
-
|
|
898
693
|
export declare class KMSInvalidMacException extends __BaseException {
|
|
899
694
|
readonly name: "KMSInvalidMacException";
|
|
900
695
|
readonly $fault: "client";
|
|
901
|
-
|
|
902
696
|
constructor(
|
|
903
697
|
opts: __ExceptionOptionType<KMSInvalidMacException, __BaseException>
|
|
904
698
|
);
|
|
905
699
|
}
|
|
906
|
-
|
|
907
700
|
export declare class KMSInvalidSignatureException extends __BaseException {
|
|
908
701
|
readonly name: "KMSInvalidSignatureException";
|
|
909
702
|
readonly $fault: "client";
|
|
910
|
-
|
|
911
703
|
constructor(
|
|
912
704
|
opts: __ExceptionOptionType<KMSInvalidSignatureException, __BaseException>
|
|
913
705
|
);
|
|
914
706
|
}
|
|
915
707
|
export interface ListAliasesRequest {
|
|
916
708
|
KeyId?: string;
|
|
917
|
-
|
|
918
709
|
Limit?: number;
|
|
919
|
-
|
|
920
710
|
Marker?: string;
|
|
921
711
|
}
|
|
922
712
|
export interface ListAliasesResponse {
|
|
923
713
|
Aliases?: AliasListEntry[];
|
|
924
|
-
|
|
925
714
|
NextMarker?: string;
|
|
926
|
-
|
|
927
715
|
Truncated?: boolean;
|
|
928
716
|
}
|
|
929
717
|
export interface ListGrantsRequest {
|
|
930
718
|
Limit?: number;
|
|
931
|
-
|
|
932
719
|
Marker?: string;
|
|
933
|
-
|
|
934
720
|
KeyId: string | undefined;
|
|
935
|
-
|
|
936
721
|
GrantId?: string;
|
|
937
|
-
|
|
938
722
|
GranteePrincipal?: string;
|
|
939
723
|
}
|
|
940
724
|
export interface ListGrantsResponse {
|
|
941
725
|
Grants?: GrantListEntry[];
|
|
942
|
-
|
|
943
726
|
NextMarker?: string;
|
|
944
|
-
|
|
945
727
|
Truncated?: boolean;
|
|
946
728
|
}
|
|
947
729
|
export interface ListKeyPoliciesRequest {
|
|
948
730
|
KeyId: string | undefined;
|
|
949
|
-
|
|
950
731
|
Limit?: number;
|
|
951
|
-
|
|
952
732
|
Marker?: string;
|
|
953
733
|
}
|
|
954
734
|
export interface ListKeyPoliciesResponse {
|
|
955
735
|
PolicyNames?: string[];
|
|
956
|
-
|
|
957
736
|
NextMarker?: string;
|
|
958
|
-
|
|
959
737
|
Truncated?: boolean;
|
|
960
738
|
}
|
|
961
739
|
export interface ListKeysRequest {
|
|
962
740
|
Limit?: number;
|
|
963
|
-
|
|
964
741
|
Marker?: string;
|
|
965
742
|
}
|
|
966
743
|
export interface ListKeysResponse {
|
|
967
744
|
Keys?: KeyListEntry[];
|
|
968
|
-
|
|
969
745
|
NextMarker?: string;
|
|
970
|
-
|
|
971
746
|
Truncated?: boolean;
|
|
972
747
|
}
|
|
973
748
|
export interface ListResourceTagsRequest {
|
|
974
749
|
KeyId: string | undefined;
|
|
975
|
-
|
|
976
750
|
Limit?: number;
|
|
977
|
-
|
|
978
751
|
Marker?: string;
|
|
979
752
|
}
|
|
980
753
|
export interface ListResourceTagsResponse {
|
|
981
754
|
Tags?: Tag[];
|
|
982
|
-
|
|
983
755
|
NextMarker?: string;
|
|
984
|
-
|
|
985
756
|
Truncated?: boolean;
|
|
986
757
|
}
|
|
987
758
|
export interface ListRetirableGrantsRequest {
|
|
988
759
|
Limit?: number;
|
|
989
|
-
|
|
990
760
|
Marker?: string;
|
|
991
|
-
|
|
992
761
|
RetiringPrincipal: string | undefined;
|
|
993
762
|
}
|
|
994
763
|
export declare enum MessageType {
|
|
@@ -997,537 +766,389 @@ export declare enum MessageType {
|
|
|
997
766
|
}
|
|
998
767
|
export interface PutKeyPolicyRequest {
|
|
999
768
|
KeyId: string | undefined;
|
|
1000
|
-
|
|
1001
769
|
PolicyName: string | undefined;
|
|
1002
|
-
|
|
1003
770
|
Policy: string | undefined;
|
|
1004
|
-
|
|
1005
771
|
BypassPolicyLockoutSafetyCheck?: boolean;
|
|
1006
772
|
}
|
|
1007
773
|
export interface ReEncryptRequest {
|
|
1008
774
|
CiphertextBlob: Uint8Array | undefined;
|
|
1009
|
-
|
|
1010
775
|
SourceEncryptionContext?: Record<string, string>;
|
|
1011
|
-
|
|
1012
776
|
SourceKeyId?: string;
|
|
1013
|
-
|
|
1014
777
|
DestinationKeyId: string | undefined;
|
|
1015
|
-
|
|
1016
778
|
DestinationEncryptionContext?: Record<string, string>;
|
|
1017
|
-
|
|
1018
779
|
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
1019
|
-
|
|
1020
780
|
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
1021
|
-
|
|
1022
781
|
GrantTokens?: string[];
|
|
1023
782
|
}
|
|
1024
783
|
export interface ReEncryptResponse {
|
|
1025
784
|
CiphertextBlob?: Uint8Array;
|
|
1026
|
-
|
|
1027
785
|
SourceKeyId?: string;
|
|
1028
|
-
|
|
1029
786
|
KeyId?: string;
|
|
1030
|
-
|
|
1031
787
|
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
1032
|
-
|
|
1033
788
|
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | string;
|
|
1034
789
|
}
|
|
1035
790
|
export interface ReplicateKeyRequest {
|
|
1036
791
|
KeyId: string | undefined;
|
|
1037
|
-
|
|
1038
792
|
ReplicaRegion: string | undefined;
|
|
1039
|
-
|
|
1040
793
|
Policy?: string;
|
|
1041
|
-
|
|
1042
794
|
BypassPolicyLockoutSafetyCheck?: boolean;
|
|
1043
|
-
|
|
1044
795
|
Description?: string;
|
|
1045
|
-
|
|
1046
796
|
Tags?: Tag[];
|
|
1047
797
|
}
|
|
1048
798
|
export interface ReplicateKeyResponse {
|
|
1049
799
|
ReplicaKeyMetadata?: KeyMetadata;
|
|
1050
|
-
|
|
1051
800
|
ReplicaPolicy?: string;
|
|
1052
|
-
|
|
1053
801
|
ReplicaTags?: Tag[];
|
|
1054
802
|
}
|
|
1055
803
|
export interface RetireGrantRequest {
|
|
1056
804
|
GrantToken?: string;
|
|
1057
|
-
|
|
1058
805
|
KeyId?: string;
|
|
1059
|
-
|
|
1060
806
|
GrantId?: string;
|
|
1061
807
|
}
|
|
1062
808
|
export interface RevokeGrantRequest {
|
|
1063
809
|
KeyId: string | undefined;
|
|
1064
|
-
|
|
1065
810
|
GrantId: string | undefined;
|
|
1066
811
|
}
|
|
1067
812
|
export interface ScheduleKeyDeletionRequest {
|
|
1068
813
|
KeyId: string | undefined;
|
|
1069
|
-
|
|
1070
814
|
PendingWindowInDays?: number;
|
|
1071
815
|
}
|
|
1072
816
|
export interface ScheduleKeyDeletionResponse {
|
|
1073
817
|
KeyId?: string;
|
|
1074
|
-
|
|
1075
818
|
DeletionDate?: Date;
|
|
1076
|
-
|
|
1077
819
|
KeyState?: KeyState | string;
|
|
1078
|
-
|
|
1079
820
|
PendingWindowInDays?: number;
|
|
1080
821
|
}
|
|
1081
822
|
export interface SignRequest {
|
|
1082
823
|
KeyId: string | undefined;
|
|
1083
|
-
|
|
1084
824
|
Message: Uint8Array | undefined;
|
|
1085
|
-
|
|
1086
825
|
MessageType?: MessageType | string;
|
|
1087
|
-
|
|
1088
826
|
GrantTokens?: string[];
|
|
1089
|
-
|
|
1090
827
|
SigningAlgorithm: SigningAlgorithmSpec | string | undefined;
|
|
1091
828
|
}
|
|
1092
829
|
export interface SignResponse {
|
|
1093
830
|
KeyId?: string;
|
|
1094
|
-
|
|
1095
831
|
Signature?: Uint8Array;
|
|
1096
|
-
|
|
1097
832
|
SigningAlgorithm?: SigningAlgorithmSpec | string;
|
|
1098
833
|
}
|
|
1099
834
|
export interface TagResourceRequest {
|
|
1100
835
|
KeyId: string | undefined;
|
|
1101
|
-
|
|
1102
836
|
Tags: Tag[] | undefined;
|
|
1103
837
|
}
|
|
1104
838
|
export interface UntagResourceRequest {
|
|
1105
839
|
KeyId: string | undefined;
|
|
1106
|
-
|
|
1107
840
|
TagKeys: string[] | undefined;
|
|
1108
841
|
}
|
|
1109
842
|
export interface UpdateAliasRequest {
|
|
1110
843
|
AliasName: string | undefined;
|
|
1111
|
-
|
|
1112
844
|
TargetKeyId: string | undefined;
|
|
1113
845
|
}
|
|
1114
846
|
export interface UpdateCustomKeyStoreRequest {
|
|
1115
847
|
CustomKeyStoreId: string | undefined;
|
|
1116
|
-
|
|
1117
848
|
NewCustomKeyStoreName?: string;
|
|
1118
|
-
|
|
1119
849
|
KeyStorePassword?: string;
|
|
1120
|
-
|
|
1121
850
|
CloudHsmClusterId?: string;
|
|
1122
851
|
}
|
|
1123
852
|
export interface UpdateCustomKeyStoreResponse {}
|
|
1124
853
|
export interface UpdateKeyDescriptionRequest {
|
|
1125
854
|
KeyId: string | undefined;
|
|
1126
|
-
|
|
1127
855
|
Description: string | undefined;
|
|
1128
856
|
}
|
|
1129
857
|
export interface UpdatePrimaryRegionRequest {
|
|
1130
858
|
KeyId: string | undefined;
|
|
1131
|
-
|
|
1132
859
|
PrimaryRegion: string | undefined;
|
|
1133
860
|
}
|
|
1134
861
|
export interface VerifyRequest {
|
|
1135
862
|
KeyId: string | undefined;
|
|
1136
|
-
|
|
1137
863
|
Message: Uint8Array | undefined;
|
|
1138
|
-
|
|
1139
864
|
MessageType?: MessageType | string;
|
|
1140
|
-
|
|
1141
865
|
Signature: Uint8Array | undefined;
|
|
1142
|
-
|
|
1143
866
|
SigningAlgorithm: SigningAlgorithmSpec | string | undefined;
|
|
1144
|
-
|
|
1145
867
|
GrantTokens?: string[];
|
|
1146
868
|
}
|
|
1147
869
|
export interface VerifyResponse {
|
|
1148
870
|
KeyId?: string;
|
|
1149
|
-
|
|
1150
871
|
SignatureValid?: boolean;
|
|
1151
|
-
|
|
1152
872
|
SigningAlgorithm?: SigningAlgorithmSpec | string;
|
|
1153
873
|
}
|
|
1154
874
|
export interface VerifyMacRequest {
|
|
1155
875
|
Message: Uint8Array | undefined;
|
|
1156
|
-
|
|
1157
876
|
KeyId: string | undefined;
|
|
1158
|
-
|
|
1159
877
|
MacAlgorithm: MacAlgorithmSpec | string | undefined;
|
|
1160
|
-
|
|
1161
878
|
Mac: Uint8Array | undefined;
|
|
1162
|
-
|
|
1163
879
|
GrantTokens?: string[];
|
|
1164
880
|
}
|
|
1165
881
|
export interface VerifyMacResponse {
|
|
1166
882
|
KeyId?: string;
|
|
1167
|
-
|
|
1168
883
|
MacValid?: boolean;
|
|
1169
|
-
|
|
1170
884
|
MacAlgorithm?: MacAlgorithmSpec | string;
|
|
1171
885
|
}
|
|
1172
|
-
|
|
1173
886
|
export declare const AliasListEntryFilterSensitiveLog: (
|
|
1174
887
|
obj: AliasListEntry
|
|
1175
888
|
) => any;
|
|
1176
|
-
|
|
1177
889
|
export declare const CancelKeyDeletionRequestFilterSensitiveLog: (
|
|
1178
890
|
obj: CancelKeyDeletionRequest
|
|
1179
891
|
) => any;
|
|
1180
|
-
|
|
1181
892
|
export declare const CancelKeyDeletionResponseFilterSensitiveLog: (
|
|
1182
893
|
obj: CancelKeyDeletionResponse
|
|
1183
894
|
) => any;
|
|
1184
|
-
|
|
1185
895
|
export declare const ConnectCustomKeyStoreRequestFilterSensitiveLog: (
|
|
1186
896
|
obj: ConnectCustomKeyStoreRequest
|
|
1187
897
|
) => any;
|
|
1188
|
-
|
|
1189
898
|
export declare const ConnectCustomKeyStoreResponseFilterSensitiveLog: (
|
|
1190
899
|
obj: ConnectCustomKeyStoreResponse
|
|
1191
900
|
) => any;
|
|
1192
|
-
|
|
1193
901
|
export declare const CreateAliasRequestFilterSensitiveLog: (
|
|
1194
902
|
obj: CreateAliasRequest
|
|
1195
903
|
) => any;
|
|
1196
|
-
|
|
1197
904
|
export declare const CreateCustomKeyStoreRequestFilterSensitiveLog: (
|
|
1198
905
|
obj: CreateCustomKeyStoreRequest
|
|
1199
906
|
) => any;
|
|
1200
|
-
|
|
1201
907
|
export declare const CreateCustomKeyStoreResponseFilterSensitiveLog: (
|
|
1202
908
|
obj: CreateCustomKeyStoreResponse
|
|
1203
909
|
) => any;
|
|
1204
|
-
|
|
1205
910
|
export declare const GrantConstraintsFilterSensitiveLog: (
|
|
1206
911
|
obj: GrantConstraints
|
|
1207
912
|
) => any;
|
|
1208
|
-
|
|
1209
913
|
export declare const CreateGrantRequestFilterSensitiveLog: (
|
|
1210
914
|
obj: CreateGrantRequest
|
|
1211
915
|
) => any;
|
|
1212
|
-
|
|
1213
916
|
export declare const CreateGrantResponseFilterSensitiveLog: (
|
|
1214
917
|
obj: CreateGrantResponse
|
|
1215
918
|
) => any;
|
|
1216
|
-
|
|
1217
919
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1218
|
-
|
|
1219
920
|
export declare const CreateKeyRequestFilterSensitiveLog: (
|
|
1220
921
|
obj: CreateKeyRequest
|
|
1221
922
|
) => any;
|
|
1222
|
-
|
|
1223
923
|
export declare const MultiRegionKeyFilterSensitiveLog: (
|
|
1224
924
|
obj: MultiRegionKey
|
|
1225
925
|
) => any;
|
|
1226
|
-
|
|
1227
926
|
export declare const MultiRegionConfigurationFilterSensitiveLog: (
|
|
1228
927
|
obj: MultiRegionConfiguration
|
|
1229
928
|
) => any;
|
|
1230
|
-
|
|
1231
929
|
export declare const KeyMetadataFilterSensitiveLog: (obj: KeyMetadata) => any;
|
|
1232
|
-
|
|
1233
930
|
export declare const CreateKeyResponseFilterSensitiveLog: (
|
|
1234
931
|
obj: CreateKeyResponse
|
|
1235
932
|
) => any;
|
|
1236
|
-
|
|
1237
933
|
export declare const CustomKeyStoresListEntryFilterSensitiveLog: (
|
|
1238
934
|
obj: CustomKeyStoresListEntry
|
|
1239
935
|
) => any;
|
|
1240
|
-
|
|
1241
936
|
export declare const DecryptRequestFilterSensitiveLog: (
|
|
1242
937
|
obj: DecryptRequest
|
|
1243
938
|
) => any;
|
|
1244
|
-
|
|
1245
939
|
export declare const DecryptResponseFilterSensitiveLog: (
|
|
1246
940
|
obj: DecryptResponse
|
|
1247
941
|
) => any;
|
|
1248
|
-
|
|
1249
942
|
export declare const DeleteAliasRequestFilterSensitiveLog: (
|
|
1250
943
|
obj: DeleteAliasRequest
|
|
1251
944
|
) => any;
|
|
1252
|
-
|
|
1253
945
|
export declare const DeleteCustomKeyStoreRequestFilterSensitiveLog: (
|
|
1254
946
|
obj: DeleteCustomKeyStoreRequest
|
|
1255
947
|
) => any;
|
|
1256
|
-
|
|
1257
948
|
export declare const DeleteCustomKeyStoreResponseFilterSensitiveLog: (
|
|
1258
949
|
obj: DeleteCustomKeyStoreResponse
|
|
1259
950
|
) => any;
|
|
1260
|
-
|
|
1261
951
|
export declare const DeleteImportedKeyMaterialRequestFilterSensitiveLog: (
|
|
1262
952
|
obj: DeleteImportedKeyMaterialRequest
|
|
1263
953
|
) => any;
|
|
1264
|
-
|
|
1265
954
|
export declare const DescribeCustomKeyStoresRequestFilterSensitiveLog: (
|
|
1266
955
|
obj: DescribeCustomKeyStoresRequest
|
|
1267
956
|
) => any;
|
|
1268
|
-
|
|
1269
957
|
export declare const DescribeCustomKeyStoresResponseFilterSensitiveLog: (
|
|
1270
958
|
obj: DescribeCustomKeyStoresResponse
|
|
1271
959
|
) => any;
|
|
1272
|
-
|
|
1273
960
|
export declare const DescribeKeyRequestFilterSensitiveLog: (
|
|
1274
961
|
obj: DescribeKeyRequest
|
|
1275
962
|
) => any;
|
|
1276
|
-
|
|
1277
963
|
export declare const DescribeKeyResponseFilterSensitiveLog: (
|
|
1278
964
|
obj: DescribeKeyResponse
|
|
1279
965
|
) => any;
|
|
1280
|
-
|
|
1281
966
|
export declare const DisableKeyRequestFilterSensitiveLog: (
|
|
1282
967
|
obj: DisableKeyRequest
|
|
1283
968
|
) => any;
|
|
1284
|
-
|
|
1285
969
|
export declare const DisableKeyRotationRequestFilterSensitiveLog: (
|
|
1286
970
|
obj: DisableKeyRotationRequest
|
|
1287
971
|
) => any;
|
|
1288
|
-
|
|
1289
972
|
export declare const DisconnectCustomKeyStoreRequestFilterSensitiveLog: (
|
|
1290
973
|
obj: DisconnectCustomKeyStoreRequest
|
|
1291
974
|
) => any;
|
|
1292
|
-
|
|
1293
975
|
export declare const DisconnectCustomKeyStoreResponseFilterSensitiveLog: (
|
|
1294
976
|
obj: DisconnectCustomKeyStoreResponse
|
|
1295
977
|
) => any;
|
|
1296
|
-
|
|
1297
978
|
export declare const EnableKeyRequestFilterSensitiveLog: (
|
|
1298
979
|
obj: EnableKeyRequest
|
|
1299
980
|
) => any;
|
|
1300
|
-
|
|
1301
981
|
export declare const EnableKeyRotationRequestFilterSensitiveLog: (
|
|
1302
982
|
obj: EnableKeyRotationRequest
|
|
1303
983
|
) => any;
|
|
1304
|
-
|
|
1305
984
|
export declare const EncryptRequestFilterSensitiveLog: (
|
|
1306
985
|
obj: EncryptRequest
|
|
1307
986
|
) => any;
|
|
1308
|
-
|
|
1309
987
|
export declare const EncryptResponseFilterSensitiveLog: (
|
|
1310
988
|
obj: EncryptResponse
|
|
1311
989
|
) => any;
|
|
1312
|
-
|
|
1313
990
|
export declare const GenerateDataKeyRequestFilterSensitiveLog: (
|
|
1314
991
|
obj: GenerateDataKeyRequest
|
|
1315
992
|
) => any;
|
|
1316
|
-
|
|
1317
993
|
export declare const GenerateDataKeyResponseFilterSensitiveLog: (
|
|
1318
994
|
obj: GenerateDataKeyResponse
|
|
1319
995
|
) => any;
|
|
1320
|
-
|
|
1321
996
|
export declare const GenerateDataKeyPairRequestFilterSensitiveLog: (
|
|
1322
997
|
obj: GenerateDataKeyPairRequest
|
|
1323
998
|
) => any;
|
|
1324
|
-
|
|
1325
999
|
export declare const GenerateDataKeyPairResponseFilterSensitiveLog: (
|
|
1326
1000
|
obj: GenerateDataKeyPairResponse
|
|
1327
1001
|
) => any;
|
|
1328
|
-
|
|
1329
1002
|
export declare const GenerateDataKeyPairWithoutPlaintextRequestFilterSensitiveLog: (
|
|
1330
1003
|
obj: GenerateDataKeyPairWithoutPlaintextRequest
|
|
1331
1004
|
) => any;
|
|
1332
|
-
|
|
1333
1005
|
export declare const GenerateDataKeyPairWithoutPlaintextResponseFilterSensitiveLog: (
|
|
1334
1006
|
obj: GenerateDataKeyPairWithoutPlaintextResponse
|
|
1335
1007
|
) => any;
|
|
1336
|
-
|
|
1337
1008
|
export declare const GenerateDataKeyWithoutPlaintextRequestFilterSensitiveLog: (
|
|
1338
1009
|
obj: GenerateDataKeyWithoutPlaintextRequest
|
|
1339
1010
|
) => any;
|
|
1340
|
-
|
|
1341
1011
|
export declare const GenerateDataKeyWithoutPlaintextResponseFilterSensitiveLog: (
|
|
1342
1012
|
obj: GenerateDataKeyWithoutPlaintextResponse
|
|
1343
1013
|
) => any;
|
|
1344
|
-
|
|
1345
1014
|
export declare const GenerateMacRequestFilterSensitiveLog: (
|
|
1346
1015
|
obj: GenerateMacRequest
|
|
1347
1016
|
) => any;
|
|
1348
|
-
|
|
1349
1017
|
export declare const GenerateMacResponseFilterSensitiveLog: (
|
|
1350
1018
|
obj: GenerateMacResponse
|
|
1351
1019
|
) => any;
|
|
1352
|
-
|
|
1353
1020
|
export declare const GenerateRandomRequestFilterSensitiveLog: (
|
|
1354
1021
|
obj: GenerateRandomRequest
|
|
1355
1022
|
) => any;
|
|
1356
|
-
|
|
1357
1023
|
export declare const GenerateRandomResponseFilterSensitiveLog: (
|
|
1358
1024
|
obj: GenerateRandomResponse
|
|
1359
1025
|
) => any;
|
|
1360
|
-
|
|
1361
1026
|
export declare const GetKeyPolicyRequestFilterSensitiveLog: (
|
|
1362
1027
|
obj: GetKeyPolicyRequest
|
|
1363
1028
|
) => any;
|
|
1364
|
-
|
|
1365
1029
|
export declare const GetKeyPolicyResponseFilterSensitiveLog: (
|
|
1366
1030
|
obj: GetKeyPolicyResponse
|
|
1367
1031
|
) => any;
|
|
1368
|
-
|
|
1369
1032
|
export declare const GetKeyRotationStatusRequestFilterSensitiveLog: (
|
|
1370
1033
|
obj: GetKeyRotationStatusRequest
|
|
1371
1034
|
) => any;
|
|
1372
|
-
|
|
1373
1035
|
export declare const GetKeyRotationStatusResponseFilterSensitiveLog: (
|
|
1374
1036
|
obj: GetKeyRotationStatusResponse
|
|
1375
1037
|
) => any;
|
|
1376
|
-
|
|
1377
1038
|
export declare const GetParametersForImportRequestFilterSensitiveLog: (
|
|
1378
1039
|
obj: GetParametersForImportRequest
|
|
1379
1040
|
) => any;
|
|
1380
|
-
|
|
1381
1041
|
export declare const GetParametersForImportResponseFilterSensitiveLog: (
|
|
1382
1042
|
obj: GetParametersForImportResponse
|
|
1383
1043
|
) => any;
|
|
1384
|
-
|
|
1385
1044
|
export declare const GetPublicKeyRequestFilterSensitiveLog: (
|
|
1386
1045
|
obj: GetPublicKeyRequest
|
|
1387
1046
|
) => any;
|
|
1388
|
-
|
|
1389
1047
|
export declare const GetPublicKeyResponseFilterSensitiveLog: (
|
|
1390
1048
|
obj: GetPublicKeyResponse
|
|
1391
1049
|
) => any;
|
|
1392
|
-
|
|
1393
1050
|
export declare const GrantListEntryFilterSensitiveLog: (
|
|
1394
1051
|
obj: GrantListEntry
|
|
1395
1052
|
) => any;
|
|
1396
|
-
|
|
1397
1053
|
export declare const ImportKeyMaterialRequestFilterSensitiveLog: (
|
|
1398
1054
|
obj: ImportKeyMaterialRequest
|
|
1399
1055
|
) => any;
|
|
1400
|
-
|
|
1401
1056
|
export declare const ImportKeyMaterialResponseFilterSensitiveLog: (
|
|
1402
1057
|
obj: ImportKeyMaterialResponse
|
|
1403
1058
|
) => any;
|
|
1404
|
-
|
|
1405
1059
|
export declare const KeyListEntryFilterSensitiveLog: (obj: KeyListEntry) => any;
|
|
1406
|
-
|
|
1407
1060
|
export declare const ListAliasesRequestFilterSensitiveLog: (
|
|
1408
1061
|
obj: ListAliasesRequest
|
|
1409
1062
|
) => any;
|
|
1410
|
-
|
|
1411
1063
|
export declare const ListAliasesResponseFilterSensitiveLog: (
|
|
1412
1064
|
obj: ListAliasesResponse
|
|
1413
1065
|
) => any;
|
|
1414
|
-
|
|
1415
1066
|
export declare const ListGrantsRequestFilterSensitiveLog: (
|
|
1416
1067
|
obj: ListGrantsRequest
|
|
1417
1068
|
) => any;
|
|
1418
|
-
|
|
1419
1069
|
export declare const ListGrantsResponseFilterSensitiveLog: (
|
|
1420
1070
|
obj: ListGrantsResponse
|
|
1421
1071
|
) => any;
|
|
1422
|
-
|
|
1423
1072
|
export declare const ListKeyPoliciesRequestFilterSensitiveLog: (
|
|
1424
1073
|
obj: ListKeyPoliciesRequest
|
|
1425
1074
|
) => any;
|
|
1426
|
-
|
|
1427
1075
|
export declare const ListKeyPoliciesResponseFilterSensitiveLog: (
|
|
1428
1076
|
obj: ListKeyPoliciesResponse
|
|
1429
1077
|
) => any;
|
|
1430
|
-
|
|
1431
1078
|
export declare const ListKeysRequestFilterSensitiveLog: (
|
|
1432
1079
|
obj: ListKeysRequest
|
|
1433
1080
|
) => any;
|
|
1434
|
-
|
|
1435
1081
|
export declare const ListKeysResponseFilterSensitiveLog: (
|
|
1436
1082
|
obj: ListKeysResponse
|
|
1437
1083
|
) => any;
|
|
1438
|
-
|
|
1439
1084
|
export declare const ListResourceTagsRequestFilterSensitiveLog: (
|
|
1440
1085
|
obj: ListResourceTagsRequest
|
|
1441
1086
|
) => any;
|
|
1442
|
-
|
|
1443
1087
|
export declare const ListResourceTagsResponseFilterSensitiveLog: (
|
|
1444
1088
|
obj: ListResourceTagsResponse
|
|
1445
1089
|
) => any;
|
|
1446
|
-
|
|
1447
1090
|
export declare const ListRetirableGrantsRequestFilterSensitiveLog: (
|
|
1448
1091
|
obj: ListRetirableGrantsRequest
|
|
1449
1092
|
) => any;
|
|
1450
|
-
|
|
1451
1093
|
export declare const PutKeyPolicyRequestFilterSensitiveLog: (
|
|
1452
1094
|
obj: PutKeyPolicyRequest
|
|
1453
1095
|
) => any;
|
|
1454
|
-
|
|
1455
1096
|
export declare const ReEncryptRequestFilterSensitiveLog: (
|
|
1456
1097
|
obj: ReEncryptRequest
|
|
1457
1098
|
) => any;
|
|
1458
|
-
|
|
1459
1099
|
export declare const ReEncryptResponseFilterSensitiveLog: (
|
|
1460
1100
|
obj: ReEncryptResponse
|
|
1461
1101
|
) => any;
|
|
1462
|
-
|
|
1463
1102
|
export declare const ReplicateKeyRequestFilterSensitiveLog: (
|
|
1464
1103
|
obj: ReplicateKeyRequest
|
|
1465
1104
|
) => any;
|
|
1466
|
-
|
|
1467
1105
|
export declare const ReplicateKeyResponseFilterSensitiveLog: (
|
|
1468
1106
|
obj: ReplicateKeyResponse
|
|
1469
1107
|
) => any;
|
|
1470
|
-
|
|
1471
1108
|
export declare const RetireGrantRequestFilterSensitiveLog: (
|
|
1472
1109
|
obj: RetireGrantRequest
|
|
1473
1110
|
) => any;
|
|
1474
|
-
|
|
1475
1111
|
export declare const RevokeGrantRequestFilterSensitiveLog: (
|
|
1476
1112
|
obj: RevokeGrantRequest
|
|
1477
1113
|
) => any;
|
|
1478
|
-
|
|
1479
1114
|
export declare const ScheduleKeyDeletionRequestFilterSensitiveLog: (
|
|
1480
1115
|
obj: ScheduleKeyDeletionRequest
|
|
1481
1116
|
) => any;
|
|
1482
|
-
|
|
1483
1117
|
export declare const ScheduleKeyDeletionResponseFilterSensitiveLog: (
|
|
1484
1118
|
obj: ScheduleKeyDeletionResponse
|
|
1485
1119
|
) => any;
|
|
1486
|
-
|
|
1487
1120
|
export declare const SignRequestFilterSensitiveLog: (obj: SignRequest) => any;
|
|
1488
|
-
|
|
1489
1121
|
export declare const SignResponseFilterSensitiveLog: (obj: SignResponse) => any;
|
|
1490
|
-
|
|
1491
1122
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1492
1123
|
obj: TagResourceRequest
|
|
1493
1124
|
) => any;
|
|
1494
|
-
|
|
1495
1125
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1496
1126
|
obj: UntagResourceRequest
|
|
1497
1127
|
) => any;
|
|
1498
|
-
|
|
1499
1128
|
export declare const UpdateAliasRequestFilterSensitiveLog: (
|
|
1500
1129
|
obj: UpdateAliasRequest
|
|
1501
1130
|
) => any;
|
|
1502
|
-
|
|
1503
1131
|
export declare const UpdateCustomKeyStoreRequestFilterSensitiveLog: (
|
|
1504
1132
|
obj: UpdateCustomKeyStoreRequest
|
|
1505
1133
|
) => any;
|
|
1506
|
-
|
|
1507
1134
|
export declare const UpdateCustomKeyStoreResponseFilterSensitiveLog: (
|
|
1508
1135
|
obj: UpdateCustomKeyStoreResponse
|
|
1509
1136
|
) => any;
|
|
1510
|
-
|
|
1511
1137
|
export declare const UpdateKeyDescriptionRequestFilterSensitiveLog: (
|
|
1512
1138
|
obj: UpdateKeyDescriptionRequest
|
|
1513
1139
|
) => any;
|
|
1514
|
-
|
|
1515
1140
|
export declare const UpdatePrimaryRegionRequestFilterSensitiveLog: (
|
|
1516
1141
|
obj: UpdatePrimaryRegionRequest
|
|
1517
1142
|
) => any;
|
|
1518
|
-
|
|
1519
1143
|
export declare const VerifyRequestFilterSensitiveLog: (
|
|
1520
1144
|
obj: VerifyRequest
|
|
1521
1145
|
) => any;
|
|
1522
|
-
|
|
1523
1146
|
export declare const VerifyResponseFilterSensitiveLog: (
|
|
1524
1147
|
obj: VerifyResponse
|
|
1525
1148
|
) => any;
|
|
1526
|
-
|
|
1527
1149
|
export declare const VerifyMacRequestFilterSensitiveLog: (
|
|
1528
1150
|
obj: VerifyMacRequest
|
|
1529
1151
|
) => any;
|
|
1530
|
-
|
|
1531
1152
|
export declare const VerifyMacResponseFilterSensitiveLog: (
|
|
1532
1153
|
obj: VerifyMacResponse
|
|
1533
1154
|
) => any;
|