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