aws-sdk-kms 1.76.0 → 1.118.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,1067 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::KMS
9
+ module Types
10
+
11
+ class AliasListEntry
12
+ attr_accessor alias_name: ::String
13
+ attr_accessor alias_arn: ::String
14
+ attr_accessor target_key_id: ::String
15
+ attr_accessor creation_date: ::Time
16
+ attr_accessor last_updated_date: ::Time
17
+ SENSITIVE: []
18
+ end
19
+
20
+ class AlreadyExistsException
21
+ attr_accessor message: ::String
22
+ SENSITIVE: []
23
+ end
24
+
25
+ class CancelKeyDeletionRequest
26
+ attr_accessor key_id: ::String
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class CancelKeyDeletionResponse
31
+ attr_accessor key_id: ::String
32
+ SENSITIVE: []
33
+ end
34
+
35
+ class CloudHsmClusterInUseException
36
+ attr_accessor message: ::String
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class CloudHsmClusterInvalidConfigurationException
41
+ attr_accessor message: ::String
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class CloudHsmClusterNotActiveException
46
+ attr_accessor message: ::String
47
+ SENSITIVE: []
48
+ end
49
+
50
+ class CloudHsmClusterNotFoundException
51
+ attr_accessor message: ::String
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class CloudHsmClusterNotRelatedException
56
+ attr_accessor message: ::String
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class ConflictException
61
+ attr_accessor message: ::String
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class ConnectCustomKeyStoreRequest
66
+ attr_accessor custom_key_store_id: ::String
67
+ SENSITIVE: []
68
+ end
69
+
70
+ class ConnectCustomKeyStoreResponse < Aws::EmptyStructure
71
+ end
72
+
73
+ class CreateAliasRequest
74
+ attr_accessor alias_name: ::String
75
+ attr_accessor target_key_id: ::String
76
+ SENSITIVE: []
77
+ end
78
+
79
+ class CreateCustomKeyStoreRequest
80
+ attr_accessor custom_key_store_name: ::String
81
+ attr_accessor cloud_hsm_cluster_id: ::String
82
+ attr_accessor trust_anchor_certificate: ::String
83
+ attr_accessor key_store_password: ::String
84
+ attr_accessor custom_key_store_type: ("AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE")
85
+ attr_accessor xks_proxy_uri_endpoint: ::String
86
+ attr_accessor xks_proxy_uri_path: ::String
87
+ attr_accessor xks_proxy_vpc_endpoint_service_name: ::String
88
+ attr_accessor xks_proxy_vpc_endpoint_service_owner: ::String
89
+ attr_accessor xks_proxy_authentication_credential: Types::XksProxyAuthenticationCredentialType
90
+ attr_accessor xks_proxy_connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
91
+ SENSITIVE: [:key_store_password]
92
+ end
93
+
94
+ class CreateCustomKeyStoreResponse
95
+ attr_accessor custom_key_store_id: ::String
96
+ SENSITIVE: []
97
+ end
98
+
99
+ class CreateGrantRequest
100
+ attr_accessor key_id: ::String
101
+ attr_accessor grantee_principal: ::String
102
+ attr_accessor retiring_principal: ::String
103
+ attr_accessor operations: ::Array[("Decrypt" | "Encrypt" | "GenerateDataKey" | "GenerateDataKeyWithoutPlaintext" | "ReEncryptFrom" | "ReEncryptTo" | "Sign" | "Verify" | "GetPublicKey" | "CreateGrant" | "RetireGrant" | "DescribeKey" | "GenerateDataKeyPair" | "GenerateDataKeyPairWithoutPlaintext" | "GenerateMac" | "VerifyMac" | "DeriveSharedSecret")]
104
+ attr_accessor constraints: Types::GrantConstraints
105
+ attr_accessor grant_tokens: ::Array[::String]
106
+ attr_accessor name: ::String
107
+ attr_accessor dry_run: bool
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class CreateGrantResponse
112
+ attr_accessor grant_token: ::String
113
+ attr_accessor grant_id: ::String
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class CreateKeyRequest
118
+ attr_accessor policy: ::String
119
+ attr_accessor description: ::String
120
+ attr_accessor key_usage: ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT")
121
+ attr_accessor customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
122
+ attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
123
+ attr_accessor origin: ("AWS_KMS" | "EXTERNAL" | "AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE")
124
+ attr_accessor custom_key_store_id: ::String
125
+ attr_accessor bypass_policy_lockout_safety_check: bool
126
+ attr_accessor tags: ::Array[Types::Tag]
127
+ attr_accessor multi_region: bool
128
+ attr_accessor xks_key_id: ::String
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class CreateKeyResponse
133
+ attr_accessor key_metadata: Types::KeyMetadata
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class CustomKeyStoreHasCMKsException
138
+ attr_accessor message: ::String
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class CustomKeyStoreInvalidStateException
143
+ attr_accessor message: ::String
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class CustomKeyStoreNameInUseException
148
+ attr_accessor message: ::String
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class CustomKeyStoreNotFoundException
153
+ attr_accessor message: ::String
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class CustomKeyStoresListEntry
158
+ attr_accessor custom_key_store_id: ::String
159
+ attr_accessor custom_key_store_name: ::String
160
+ attr_accessor cloud_hsm_cluster_id: ::String
161
+ attr_accessor trust_anchor_certificate: ::String
162
+ attr_accessor connection_state: ("CONNECTED" | "CONNECTING" | "FAILED" | "DISCONNECTED" | "DISCONNECTING")
163
+ attr_accessor connection_error_code: ("INVALID_CREDENTIALS" | "CLUSTER_NOT_FOUND" | "NETWORK_ERRORS" | "INTERNAL_ERROR" | "INSUFFICIENT_CLOUDHSM_HSMS" | "USER_LOCKED_OUT" | "USER_NOT_FOUND" | "USER_LOGGED_IN" | "SUBNET_NOT_FOUND" | "INSUFFICIENT_FREE_ADDRESSES_IN_SUBNET" | "XKS_PROXY_ACCESS_DENIED" | "XKS_PROXY_NOT_REACHABLE" | "XKS_VPC_ENDPOINT_SERVICE_NOT_FOUND" | "XKS_PROXY_INVALID_RESPONSE" | "XKS_PROXY_INVALID_CONFIGURATION" | "XKS_VPC_ENDPOINT_SERVICE_INVALID_CONFIGURATION" | "XKS_PROXY_TIMED_OUT" | "XKS_PROXY_INVALID_TLS_CONFIGURATION")
164
+ attr_accessor creation_date: ::Time
165
+ attr_accessor custom_key_store_type: ("AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE")
166
+ attr_accessor xks_proxy_configuration: Types::XksProxyConfigurationType
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class DecryptRequest
171
+ attr_accessor ciphertext_blob: ::String
172
+ attr_accessor encryption_context: ::Hash[::String, ::String]
173
+ attr_accessor grant_tokens: ::Array[::String]
174
+ attr_accessor key_id: ::String
175
+ attr_accessor encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
176
+ attr_accessor recipient: Types::RecipientInfo
177
+ attr_accessor dry_run: bool
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class DecryptResponse
182
+ attr_accessor key_id: ::String
183
+ attr_accessor plaintext: ::String
184
+ attr_accessor encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
185
+ attr_accessor ciphertext_for_recipient: ::String
186
+ attr_accessor key_material_id: ::String
187
+ SENSITIVE: [:plaintext]
188
+ end
189
+
190
+ class DeleteAliasRequest
191
+ attr_accessor alias_name: ::String
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class DeleteCustomKeyStoreRequest
196
+ attr_accessor custom_key_store_id: ::String
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class DeleteCustomKeyStoreResponse < Aws::EmptyStructure
201
+ end
202
+
203
+ class DeleteImportedKeyMaterialRequest
204
+ attr_accessor key_id: ::String
205
+ attr_accessor key_material_id: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class DeleteImportedKeyMaterialResponse
210
+ attr_accessor key_id: ::String
211
+ attr_accessor key_material_id: ::String
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class DependencyTimeoutException
216
+ attr_accessor message: ::String
217
+ SENSITIVE: []
218
+ end
219
+
220
+ class DeriveSharedSecretRequest
221
+ attr_accessor key_id: ::String
222
+ attr_accessor key_agreement_algorithm: ("ECDH")
223
+ attr_accessor public_key: ::String
224
+ attr_accessor grant_tokens: ::Array[::String]
225
+ attr_accessor dry_run: bool
226
+ attr_accessor recipient: Types::RecipientInfo
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class DeriveSharedSecretResponse
231
+ attr_accessor key_id: ::String
232
+ attr_accessor shared_secret: ::String
233
+ attr_accessor ciphertext_for_recipient: ::String
234
+ attr_accessor key_agreement_algorithm: ("ECDH")
235
+ attr_accessor key_origin: ("AWS_KMS" | "EXTERNAL" | "AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE")
236
+ SENSITIVE: [:shared_secret]
237
+ end
238
+
239
+ class DescribeCustomKeyStoresRequest
240
+ attr_accessor custom_key_store_id: ::String
241
+ attr_accessor custom_key_store_name: ::String
242
+ attr_accessor limit: ::Integer
243
+ attr_accessor marker: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class DescribeCustomKeyStoresResponse
248
+ attr_accessor custom_key_stores: ::Array[Types::CustomKeyStoresListEntry]
249
+ attr_accessor next_marker: ::String
250
+ attr_accessor truncated: bool
251
+ SENSITIVE: []
252
+ end
253
+
254
+ class DescribeKeyRequest
255
+ attr_accessor key_id: ::String
256
+ attr_accessor grant_tokens: ::Array[::String]
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class DescribeKeyResponse
261
+ attr_accessor key_metadata: Types::KeyMetadata
262
+ SENSITIVE: []
263
+ end
264
+
265
+ class DisableKeyRequest
266
+ attr_accessor key_id: ::String
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class DisableKeyRotationRequest
271
+ attr_accessor key_id: ::String
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class DisabledException
276
+ attr_accessor message: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class DisconnectCustomKeyStoreRequest
281
+ attr_accessor custom_key_store_id: ::String
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class DisconnectCustomKeyStoreResponse < Aws::EmptyStructure
286
+ end
287
+
288
+ class DryRunOperationException
289
+ attr_accessor message: ::String
290
+ SENSITIVE: []
291
+ end
292
+
293
+ class EnableKeyRequest
294
+ attr_accessor key_id: ::String
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class EnableKeyRotationRequest
299
+ attr_accessor key_id: ::String
300
+ attr_accessor rotation_period_in_days: ::Integer
301
+ SENSITIVE: []
302
+ end
303
+
304
+ class EncryptRequest
305
+ attr_accessor key_id: ::String
306
+ attr_accessor plaintext: ::String
307
+ attr_accessor encryption_context: ::Hash[::String, ::String]
308
+ attr_accessor grant_tokens: ::Array[::String]
309
+ attr_accessor encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
310
+ attr_accessor dry_run: bool
311
+ SENSITIVE: [:plaintext]
312
+ end
313
+
314
+ class EncryptResponse
315
+ attr_accessor ciphertext_blob: ::String
316
+ attr_accessor key_id: ::String
317
+ attr_accessor encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
318
+ SENSITIVE: []
319
+ end
320
+
321
+ class ExpiredImportTokenException
322
+ attr_accessor message: ::String
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class GenerateDataKeyPairRequest
327
+ attr_accessor encryption_context: ::Hash[::String, ::String]
328
+ attr_accessor key_id: ::String
329
+ attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
330
+ attr_accessor grant_tokens: ::Array[::String]
331
+ attr_accessor recipient: Types::RecipientInfo
332
+ attr_accessor dry_run: bool
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class GenerateDataKeyPairResponse
337
+ attr_accessor private_key_ciphertext_blob: ::String
338
+ attr_accessor private_key_plaintext: ::String
339
+ attr_accessor public_key: ::String
340
+ attr_accessor key_id: ::String
341
+ attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
342
+ attr_accessor ciphertext_for_recipient: ::String
343
+ attr_accessor key_material_id: ::String
344
+ SENSITIVE: [:private_key_plaintext]
345
+ end
346
+
347
+ class GenerateDataKeyPairWithoutPlaintextRequest
348
+ attr_accessor encryption_context: ::Hash[::String, ::String]
349
+ attr_accessor key_id: ::String
350
+ attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
351
+ attr_accessor grant_tokens: ::Array[::String]
352
+ attr_accessor dry_run: bool
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class GenerateDataKeyPairWithoutPlaintextResponse
357
+ attr_accessor private_key_ciphertext_blob: ::String
358
+ attr_accessor public_key: ::String
359
+ attr_accessor key_id: ::String
360
+ attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
361
+ attr_accessor key_material_id: ::String
362
+ SENSITIVE: []
363
+ end
364
+
365
+ class GenerateDataKeyRequest
366
+ attr_accessor key_id: ::String
367
+ attr_accessor encryption_context: ::Hash[::String, ::String]
368
+ attr_accessor number_of_bytes: ::Integer
369
+ attr_accessor key_spec: ("AES_256" | "AES_128")
370
+ attr_accessor grant_tokens: ::Array[::String]
371
+ attr_accessor recipient: Types::RecipientInfo
372
+ attr_accessor dry_run: bool
373
+ SENSITIVE: []
374
+ end
375
+
376
+ class GenerateDataKeyResponse
377
+ attr_accessor ciphertext_blob: ::String
378
+ attr_accessor plaintext: ::String
379
+ attr_accessor key_id: ::String
380
+ attr_accessor ciphertext_for_recipient: ::String
381
+ attr_accessor key_material_id: ::String
382
+ SENSITIVE: [:plaintext]
383
+ end
384
+
385
+ class GenerateDataKeyWithoutPlaintextRequest
386
+ attr_accessor key_id: ::String
387
+ attr_accessor encryption_context: ::Hash[::String, ::String]
388
+ attr_accessor key_spec: ("AES_256" | "AES_128")
389
+ attr_accessor number_of_bytes: ::Integer
390
+ attr_accessor grant_tokens: ::Array[::String]
391
+ attr_accessor dry_run: bool
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class GenerateDataKeyWithoutPlaintextResponse
396
+ attr_accessor ciphertext_blob: ::String
397
+ attr_accessor key_id: ::String
398
+ attr_accessor key_material_id: ::String
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class GenerateMacRequest
403
+ attr_accessor message: ::String
404
+ attr_accessor key_id: ::String
405
+ attr_accessor mac_algorithm: ("HMAC_SHA_224" | "HMAC_SHA_256" | "HMAC_SHA_384" | "HMAC_SHA_512")
406
+ attr_accessor grant_tokens: ::Array[::String]
407
+ attr_accessor dry_run: bool
408
+ SENSITIVE: [:message]
409
+ end
410
+
411
+ class GenerateMacResponse
412
+ attr_accessor mac: ::String
413
+ attr_accessor mac_algorithm: ("HMAC_SHA_224" | "HMAC_SHA_256" | "HMAC_SHA_384" | "HMAC_SHA_512")
414
+ attr_accessor key_id: ::String
415
+ SENSITIVE: []
416
+ end
417
+
418
+ class GenerateRandomRequest
419
+ attr_accessor number_of_bytes: ::Integer
420
+ attr_accessor custom_key_store_id: ::String
421
+ attr_accessor recipient: Types::RecipientInfo
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class GenerateRandomResponse
426
+ attr_accessor plaintext: ::String
427
+ attr_accessor ciphertext_for_recipient: ::String
428
+ SENSITIVE: [:plaintext]
429
+ end
430
+
431
+ class GetKeyPolicyRequest
432
+ attr_accessor key_id: ::String
433
+ attr_accessor policy_name: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class GetKeyPolicyResponse
438
+ attr_accessor policy: ::String
439
+ attr_accessor policy_name: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class GetKeyRotationStatusRequest
444
+ attr_accessor key_id: ::String
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class GetKeyRotationStatusResponse
449
+ attr_accessor key_rotation_enabled: bool
450
+ attr_accessor key_id: ::String
451
+ attr_accessor rotation_period_in_days: ::Integer
452
+ attr_accessor next_rotation_date: ::Time
453
+ attr_accessor on_demand_rotation_start_date: ::Time
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class GetParametersForImportRequest
458
+ attr_accessor key_id: ::String
459
+ attr_accessor wrapping_algorithm: ("RSAES_PKCS1_V1_5" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "RSA_AES_KEY_WRAP_SHA_1" | "RSA_AES_KEY_WRAP_SHA_256" | "SM2PKE")
460
+ attr_accessor wrapping_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "SM2")
461
+ SENSITIVE: []
462
+ end
463
+
464
+ class GetParametersForImportResponse
465
+ attr_accessor key_id: ::String
466
+ attr_accessor import_token: ::String
467
+ attr_accessor public_key: ::String
468
+ attr_accessor parameters_valid_to: ::Time
469
+ SENSITIVE: [:public_key]
470
+ end
471
+
472
+ class GetPublicKeyRequest
473
+ attr_accessor key_id: ::String
474
+ attr_accessor grant_tokens: ::Array[::String]
475
+ SENSITIVE: []
476
+ end
477
+
478
+ class GetPublicKeyResponse
479
+ attr_accessor key_id: ::String
480
+ attr_accessor public_key: ::String
481
+ attr_accessor customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
482
+ attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
483
+ attr_accessor key_usage: ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT")
484
+ attr_accessor encryption_algorithms: ::Array[("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")]
485
+ attr_accessor signing_algorithms: ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")]
486
+ attr_accessor key_agreement_algorithms: ::Array[("ECDH")]
487
+ SENSITIVE: []
488
+ end
489
+
490
+ class GrantConstraints
491
+ attr_accessor encryption_context_subset: ::Hash[::String, ::String]
492
+ attr_accessor encryption_context_equals: ::Hash[::String, ::String]
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class GrantListEntry
497
+ attr_accessor key_id: ::String
498
+ attr_accessor grant_id: ::String
499
+ attr_accessor name: ::String
500
+ attr_accessor creation_date: ::Time
501
+ attr_accessor grantee_principal: ::String
502
+ attr_accessor retiring_principal: ::String
503
+ attr_accessor issuing_account: ::String
504
+ attr_accessor operations: ::Array[("Decrypt" | "Encrypt" | "GenerateDataKey" | "GenerateDataKeyWithoutPlaintext" | "ReEncryptFrom" | "ReEncryptTo" | "Sign" | "Verify" | "GetPublicKey" | "CreateGrant" | "RetireGrant" | "DescribeKey" | "GenerateDataKeyPair" | "GenerateDataKeyPairWithoutPlaintext" | "GenerateMac" | "VerifyMac" | "DeriveSharedSecret")]
505
+ attr_accessor constraints: Types::GrantConstraints
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class ImportKeyMaterialRequest
510
+ attr_accessor key_id: ::String
511
+ attr_accessor import_token: ::String
512
+ attr_accessor encrypted_key_material: ::String
513
+ attr_accessor valid_to: ::Time
514
+ attr_accessor expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
515
+ attr_accessor import_type: ("NEW_KEY_MATERIAL" | "EXISTING_KEY_MATERIAL")
516
+ attr_accessor key_material_description: ::String
517
+ attr_accessor key_material_id: ::String
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class ImportKeyMaterialResponse
522
+ attr_accessor key_id: ::String
523
+ attr_accessor key_material_id: ::String
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class IncorrectKeyException
528
+ attr_accessor message: ::String
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class IncorrectKeyMaterialException
533
+ attr_accessor message: ::String
534
+ SENSITIVE: []
535
+ end
536
+
537
+ class IncorrectTrustAnchorException
538
+ attr_accessor message: ::String
539
+ SENSITIVE: []
540
+ end
541
+
542
+ class InvalidAliasNameException
543
+ attr_accessor message: ::String
544
+ SENSITIVE: []
545
+ end
546
+
547
+ class InvalidArnException
548
+ attr_accessor message: ::String
549
+ SENSITIVE: []
550
+ end
551
+
552
+ class InvalidCiphertextException
553
+ attr_accessor message: ::String
554
+ SENSITIVE: []
555
+ end
556
+
557
+ class InvalidGrantIdException
558
+ attr_accessor message: ::String
559
+ SENSITIVE: []
560
+ end
561
+
562
+ class InvalidGrantTokenException
563
+ attr_accessor message: ::String
564
+ SENSITIVE: []
565
+ end
566
+
567
+ class InvalidImportTokenException
568
+ attr_accessor message: ::String
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class InvalidKeyUsageException
573
+ attr_accessor message: ::String
574
+ SENSITIVE: []
575
+ end
576
+
577
+ class InvalidMarkerException
578
+ attr_accessor message: ::String
579
+ SENSITIVE: []
580
+ end
581
+
582
+ class KMSInternalException
583
+ attr_accessor message: ::String
584
+ SENSITIVE: []
585
+ end
586
+
587
+ class KMSInvalidMacException
588
+ attr_accessor message: ::String
589
+ SENSITIVE: []
590
+ end
591
+
592
+ class KMSInvalidSignatureException
593
+ attr_accessor message: ::String
594
+ SENSITIVE: []
595
+ end
596
+
597
+ class KMSInvalidStateException
598
+ attr_accessor message: ::String
599
+ SENSITIVE: []
600
+ end
601
+
602
+ class KeyListEntry
603
+ attr_accessor key_id: ::String
604
+ attr_accessor key_arn: ::String
605
+ SENSITIVE: []
606
+ end
607
+
608
+ class KeyMetadata
609
+ attr_accessor aws_account_id: ::String
610
+ attr_accessor key_id: ::String
611
+ attr_accessor arn: ::String
612
+ attr_accessor creation_date: ::Time
613
+ attr_accessor enabled: bool
614
+ attr_accessor description: ::String
615
+ attr_accessor key_usage: ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT")
616
+ attr_accessor key_state: ("Creating" | "Enabled" | "Disabled" | "PendingDeletion" | "PendingImport" | "PendingReplicaDeletion" | "Unavailable" | "Updating")
617
+ attr_accessor deletion_date: ::Time
618
+ attr_accessor valid_to: ::Time
619
+ attr_accessor origin: ("AWS_KMS" | "EXTERNAL" | "AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE")
620
+ attr_accessor custom_key_store_id: ::String
621
+ attr_accessor cloud_hsm_cluster_id: ::String
622
+ attr_accessor expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
623
+ attr_accessor key_manager: ("AWS" | "CUSTOMER")
624
+ attr_accessor customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
625
+ attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
626
+ attr_accessor encryption_algorithms: ::Array[("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")]
627
+ attr_accessor signing_algorithms: ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")]
628
+ attr_accessor key_agreement_algorithms: ::Array[("ECDH")]
629
+ attr_accessor multi_region: bool
630
+ attr_accessor multi_region_configuration: Types::MultiRegionConfiguration
631
+ attr_accessor pending_deletion_window_in_days: ::Integer
632
+ attr_accessor mac_algorithms: ::Array[("HMAC_SHA_224" | "HMAC_SHA_256" | "HMAC_SHA_384" | "HMAC_SHA_512")]
633
+ attr_accessor xks_key_configuration: Types::XksKeyConfigurationType
634
+ attr_accessor current_key_material_id: ::String
635
+ SENSITIVE: []
636
+ end
637
+
638
+ class KeyUnavailableException
639
+ attr_accessor message: ::String
640
+ SENSITIVE: []
641
+ end
642
+
643
+ class LimitExceededException
644
+ attr_accessor message: ::String
645
+ SENSITIVE: []
646
+ end
647
+
648
+ class ListAliasesRequest
649
+ attr_accessor key_id: ::String
650
+ attr_accessor limit: ::Integer
651
+ attr_accessor marker: ::String
652
+ SENSITIVE: []
653
+ end
654
+
655
+ class ListAliasesResponse
656
+ attr_accessor aliases: ::Array[Types::AliasListEntry]
657
+ attr_accessor next_marker: ::String
658
+ attr_accessor truncated: bool
659
+ SENSITIVE: []
660
+ end
661
+
662
+ class ListGrantsRequest
663
+ attr_accessor limit: ::Integer
664
+ attr_accessor marker: ::String
665
+ attr_accessor key_id: ::String
666
+ attr_accessor grant_id: ::String
667
+ attr_accessor grantee_principal: ::String
668
+ SENSITIVE: []
669
+ end
670
+
671
+ class ListGrantsResponse
672
+ attr_accessor grants: ::Array[Types::GrantListEntry]
673
+ attr_accessor next_marker: ::String
674
+ attr_accessor truncated: bool
675
+ SENSITIVE: []
676
+ end
677
+
678
+ class ListKeyPoliciesRequest
679
+ attr_accessor key_id: ::String
680
+ attr_accessor limit: ::Integer
681
+ attr_accessor marker: ::String
682
+ SENSITIVE: []
683
+ end
684
+
685
+ class ListKeyPoliciesResponse
686
+ attr_accessor policy_names: ::Array[::String]
687
+ attr_accessor next_marker: ::String
688
+ attr_accessor truncated: bool
689
+ SENSITIVE: []
690
+ end
691
+
692
+ class ListKeyRotationsRequest
693
+ attr_accessor key_id: ::String
694
+ attr_accessor include_key_material: ("ALL_KEY_MATERIAL" | "ROTATIONS_ONLY")
695
+ attr_accessor limit: ::Integer
696
+ attr_accessor marker: ::String
697
+ SENSITIVE: []
698
+ end
699
+
700
+ class ListKeyRotationsResponse
701
+ attr_accessor rotations: ::Array[Types::RotationsListEntry]
702
+ attr_accessor next_marker: ::String
703
+ attr_accessor truncated: bool
704
+ SENSITIVE: []
705
+ end
706
+
707
+ class ListKeysRequest
708
+ attr_accessor limit: ::Integer
709
+ attr_accessor marker: ::String
710
+ SENSITIVE: []
711
+ end
712
+
713
+ class ListKeysResponse
714
+ attr_accessor keys: ::Array[Types::KeyListEntry]
715
+ attr_accessor next_marker: ::String
716
+ attr_accessor truncated: bool
717
+ SENSITIVE: []
718
+ end
719
+
720
+ class ListResourceTagsRequest
721
+ attr_accessor key_id: ::String
722
+ attr_accessor limit: ::Integer
723
+ attr_accessor marker: ::String
724
+ SENSITIVE: []
725
+ end
726
+
727
+ class ListResourceTagsResponse
728
+ attr_accessor tags: ::Array[Types::Tag]
729
+ attr_accessor next_marker: ::String
730
+ attr_accessor truncated: bool
731
+ SENSITIVE: []
732
+ end
733
+
734
+ class ListRetirableGrantsRequest
735
+ attr_accessor limit: ::Integer
736
+ attr_accessor marker: ::String
737
+ attr_accessor retiring_principal: ::String
738
+ SENSITIVE: []
739
+ end
740
+
741
+ class MalformedPolicyDocumentException
742
+ attr_accessor message: ::String
743
+ SENSITIVE: []
744
+ end
745
+
746
+ class MultiRegionConfiguration
747
+ attr_accessor multi_region_key_type: ("PRIMARY" | "REPLICA")
748
+ attr_accessor primary_key: Types::MultiRegionKey
749
+ attr_accessor replica_keys: ::Array[Types::MultiRegionKey]
750
+ SENSITIVE: []
751
+ end
752
+
753
+ class MultiRegionKey
754
+ attr_accessor arn: ::String
755
+ attr_accessor region: ::String
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class NotFoundException
760
+ attr_accessor message: ::String
761
+ SENSITIVE: []
762
+ end
763
+
764
+ class PutKeyPolicyRequest
765
+ attr_accessor key_id: ::String
766
+ attr_accessor policy_name: ::String
767
+ attr_accessor policy: ::String
768
+ attr_accessor bypass_policy_lockout_safety_check: bool
769
+ SENSITIVE: []
770
+ end
771
+
772
+ class ReEncryptRequest
773
+ attr_accessor ciphertext_blob: ::String
774
+ attr_accessor source_encryption_context: ::Hash[::String, ::String]
775
+ attr_accessor source_key_id: ::String
776
+ attr_accessor destination_key_id: ::String
777
+ attr_accessor destination_encryption_context: ::Hash[::String, ::String]
778
+ attr_accessor source_encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
779
+ attr_accessor destination_encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
780
+ attr_accessor grant_tokens: ::Array[::String]
781
+ attr_accessor dry_run: bool
782
+ SENSITIVE: []
783
+ end
784
+
785
+ class ReEncryptResponse
786
+ attr_accessor ciphertext_blob: ::String
787
+ attr_accessor source_key_id: ::String
788
+ attr_accessor key_id: ::String
789
+ attr_accessor source_encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
790
+ attr_accessor destination_encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
791
+ attr_accessor source_key_material_id: ::String
792
+ attr_accessor destination_key_material_id: ::String
793
+ SENSITIVE: []
794
+ end
795
+
796
+ class RecipientInfo
797
+ attr_accessor key_encryption_algorithm: ("RSAES_OAEP_SHA_256")
798
+ attr_accessor attestation_document: ::String
799
+ SENSITIVE: []
800
+ end
801
+
802
+ class ReplicateKeyRequest
803
+ attr_accessor key_id: ::String
804
+ attr_accessor replica_region: ::String
805
+ attr_accessor policy: ::String
806
+ attr_accessor bypass_policy_lockout_safety_check: bool
807
+ attr_accessor description: ::String
808
+ attr_accessor tags: ::Array[Types::Tag]
809
+ SENSITIVE: []
810
+ end
811
+
812
+ class ReplicateKeyResponse
813
+ attr_accessor replica_key_metadata: Types::KeyMetadata
814
+ attr_accessor replica_policy: ::String
815
+ attr_accessor replica_tags: ::Array[Types::Tag]
816
+ SENSITIVE: []
817
+ end
818
+
819
+ class RetireGrantRequest
820
+ attr_accessor grant_token: ::String
821
+ attr_accessor key_id: ::String
822
+ attr_accessor grant_id: ::String
823
+ attr_accessor dry_run: bool
824
+ SENSITIVE: []
825
+ end
826
+
827
+ class RevokeGrantRequest
828
+ attr_accessor key_id: ::String
829
+ attr_accessor grant_id: ::String
830
+ attr_accessor dry_run: bool
831
+ SENSITIVE: []
832
+ end
833
+
834
+ class RotateKeyOnDemandRequest
835
+ attr_accessor key_id: ::String
836
+ SENSITIVE: []
837
+ end
838
+
839
+ class RotateKeyOnDemandResponse
840
+ attr_accessor key_id: ::String
841
+ SENSITIVE: []
842
+ end
843
+
844
+ class RotationsListEntry
845
+ attr_accessor key_id: ::String
846
+ attr_accessor key_material_id: ::String
847
+ attr_accessor key_material_description: ::String
848
+ attr_accessor import_state: ("IMPORTED" | "PENDING_IMPORT")
849
+ attr_accessor key_material_state: ("NON_CURRENT" | "CURRENT" | "PENDING_ROTATION" | "PENDING_MULTI_REGION_IMPORT_AND_ROTATION")
850
+ attr_accessor expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
851
+ attr_accessor valid_to: ::Time
852
+ attr_accessor rotation_date: ::Time
853
+ attr_accessor rotation_type: ("AUTOMATIC" | "ON_DEMAND")
854
+ SENSITIVE: []
855
+ end
856
+
857
+ class ScheduleKeyDeletionRequest
858
+ attr_accessor key_id: ::String
859
+ attr_accessor pending_window_in_days: ::Integer
860
+ SENSITIVE: []
861
+ end
862
+
863
+ class ScheduleKeyDeletionResponse
864
+ attr_accessor key_id: ::String
865
+ attr_accessor deletion_date: ::Time
866
+ attr_accessor key_state: ("Creating" | "Enabled" | "Disabled" | "PendingDeletion" | "PendingImport" | "PendingReplicaDeletion" | "Unavailable" | "Updating")
867
+ attr_accessor pending_window_in_days: ::Integer
868
+ SENSITIVE: []
869
+ end
870
+
871
+ class SignRequest
872
+ attr_accessor key_id: ::String
873
+ attr_accessor message: ::String
874
+ attr_accessor message_type: ("RAW" | "DIGEST" | "EXTERNAL_MU")
875
+ attr_accessor grant_tokens: ::Array[::String]
876
+ attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
877
+ attr_accessor dry_run: bool
878
+ SENSITIVE: [:message]
879
+ end
880
+
881
+ class SignResponse
882
+ attr_accessor key_id: ::String
883
+ attr_accessor signature: ::String
884
+ attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
885
+ SENSITIVE: []
886
+ end
887
+
888
+ class Tag
889
+ attr_accessor tag_key: ::String
890
+ attr_accessor tag_value: ::String
891
+ SENSITIVE: []
892
+ end
893
+
894
+ class TagException
895
+ attr_accessor message: ::String
896
+ SENSITIVE: []
897
+ end
898
+
899
+ class TagResourceRequest
900
+ attr_accessor key_id: ::String
901
+ attr_accessor tags: ::Array[Types::Tag]
902
+ SENSITIVE: []
903
+ end
904
+
905
+ class UnsupportedOperationException
906
+ attr_accessor message: ::String
907
+ SENSITIVE: []
908
+ end
909
+
910
+ class UntagResourceRequest
911
+ attr_accessor key_id: ::String
912
+ attr_accessor tag_keys: ::Array[::String]
913
+ SENSITIVE: []
914
+ end
915
+
916
+ class UpdateAliasRequest
917
+ attr_accessor alias_name: ::String
918
+ attr_accessor target_key_id: ::String
919
+ SENSITIVE: []
920
+ end
921
+
922
+ class UpdateCustomKeyStoreRequest
923
+ attr_accessor custom_key_store_id: ::String
924
+ attr_accessor new_custom_key_store_name: ::String
925
+ attr_accessor key_store_password: ::String
926
+ attr_accessor cloud_hsm_cluster_id: ::String
927
+ attr_accessor xks_proxy_uri_endpoint: ::String
928
+ attr_accessor xks_proxy_uri_path: ::String
929
+ attr_accessor xks_proxy_vpc_endpoint_service_name: ::String
930
+ attr_accessor xks_proxy_vpc_endpoint_service_owner: ::String
931
+ attr_accessor xks_proxy_authentication_credential: Types::XksProxyAuthenticationCredentialType
932
+ attr_accessor xks_proxy_connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
933
+ SENSITIVE: [:key_store_password]
934
+ end
935
+
936
+ class UpdateCustomKeyStoreResponse < Aws::EmptyStructure
937
+ end
938
+
939
+ class UpdateKeyDescriptionRequest
940
+ attr_accessor key_id: ::String
941
+ attr_accessor description: ::String
942
+ SENSITIVE: []
943
+ end
944
+
945
+ class UpdatePrimaryRegionRequest
946
+ attr_accessor key_id: ::String
947
+ attr_accessor primary_region: ::String
948
+ SENSITIVE: []
949
+ end
950
+
951
+ class VerifyMacRequest
952
+ attr_accessor message: ::String
953
+ attr_accessor key_id: ::String
954
+ attr_accessor mac_algorithm: ("HMAC_SHA_224" | "HMAC_SHA_256" | "HMAC_SHA_384" | "HMAC_SHA_512")
955
+ attr_accessor mac: ::String
956
+ attr_accessor grant_tokens: ::Array[::String]
957
+ attr_accessor dry_run: bool
958
+ SENSITIVE: [:message]
959
+ end
960
+
961
+ class VerifyMacResponse
962
+ attr_accessor key_id: ::String
963
+ attr_accessor mac_valid: bool
964
+ attr_accessor mac_algorithm: ("HMAC_SHA_224" | "HMAC_SHA_256" | "HMAC_SHA_384" | "HMAC_SHA_512")
965
+ SENSITIVE: []
966
+ end
967
+
968
+ class VerifyRequest
969
+ attr_accessor key_id: ::String
970
+ attr_accessor message: ::String
971
+ attr_accessor message_type: ("RAW" | "DIGEST" | "EXTERNAL_MU")
972
+ attr_accessor signature: ::String
973
+ attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
974
+ attr_accessor grant_tokens: ::Array[::String]
975
+ attr_accessor dry_run: bool
976
+ SENSITIVE: [:message]
977
+ end
978
+
979
+ class VerifyResponse
980
+ attr_accessor key_id: ::String
981
+ attr_accessor signature_valid: bool
982
+ attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
983
+ SENSITIVE: []
984
+ end
985
+
986
+ class XksKeyAlreadyInUseException
987
+ attr_accessor message: ::String
988
+ SENSITIVE: []
989
+ end
990
+
991
+ class XksKeyConfigurationType
992
+ attr_accessor id: ::String
993
+ SENSITIVE: []
994
+ end
995
+
996
+ class XksKeyInvalidConfigurationException
997
+ attr_accessor message: ::String
998
+ SENSITIVE: []
999
+ end
1000
+
1001
+ class XksKeyNotFoundException
1002
+ attr_accessor message: ::String
1003
+ SENSITIVE: []
1004
+ end
1005
+
1006
+ class XksProxyAuthenticationCredentialType
1007
+ attr_accessor access_key_id: ::String
1008
+ attr_accessor raw_secret_access_key: ::String
1009
+ SENSITIVE: [:access_key_id, :raw_secret_access_key]
1010
+ end
1011
+
1012
+ class XksProxyConfigurationType
1013
+ attr_accessor connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
1014
+ attr_accessor access_key_id: ::String
1015
+ attr_accessor uri_endpoint: ::String
1016
+ attr_accessor uri_path: ::String
1017
+ attr_accessor vpc_endpoint_service_name: ::String
1018
+ attr_accessor vpc_endpoint_service_owner: ::String
1019
+ SENSITIVE: [:access_key_id]
1020
+ end
1021
+
1022
+ class XksProxyIncorrectAuthenticationCredentialException
1023
+ attr_accessor message: ::String
1024
+ SENSITIVE: []
1025
+ end
1026
+
1027
+ class XksProxyInvalidConfigurationException
1028
+ attr_accessor message: ::String
1029
+ SENSITIVE: []
1030
+ end
1031
+
1032
+ class XksProxyInvalidResponseException
1033
+ attr_accessor message: ::String
1034
+ SENSITIVE: []
1035
+ end
1036
+
1037
+ class XksProxyUriEndpointInUseException
1038
+ attr_accessor message: ::String
1039
+ SENSITIVE: []
1040
+ end
1041
+
1042
+ class XksProxyUriInUseException
1043
+ attr_accessor message: ::String
1044
+ SENSITIVE: []
1045
+ end
1046
+
1047
+ class XksProxyUriUnreachableException
1048
+ attr_accessor message: ::String
1049
+ SENSITIVE: []
1050
+ end
1051
+
1052
+ class XksProxyVpcEndpointServiceInUseException
1053
+ attr_accessor message: ::String
1054
+ SENSITIVE: []
1055
+ end
1056
+
1057
+ class XksProxyVpcEndpointServiceInvalidConfigurationException
1058
+ attr_accessor message: ::String
1059
+ SENSITIVE: []
1060
+ end
1061
+
1062
+ class XksProxyVpcEndpointServiceNotFoundException
1063
+ attr_accessor message: ::String
1064
+ SENSITIVE: []
1065
+ end
1066
+ end
1067
+ end