aws-sdk-paymentcryptographydata 1.16.0 → 1.18.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6927cfac9080e08631d4f3e8783c4ea000488e7cd9c71a1cc3ddc9752995d32
4
- data.tar.gz: 8ee3edd3a054e7cd5e5af82c8b62b9e4612084ab4091c49b36ce58846ef12349
3
+ metadata.gz: f9d8c37eaa03d0646ca715ed43a42b893d77e0c473043918e452eb49480fb0b0
4
+ data.tar.gz: 25480637eb9a8fd486a98d27daf25819e6c00b340a14ca6b5453bd304a3f7b89
5
5
  SHA512:
6
- metadata.gz: b9d1c6ea33683da1566fc226f233bd5d9041fd51b0120c010e453fe5c36046f1c1685831e3c779bb7df85d95f6101063fc5aaf90b5f8c0ec65984f40b30156a2
7
- data.tar.gz: c120aab438613daf95e0391d454fb2dc0a64fbe9d69a51dffe791e74254d61d0666fac75504051ace0e5ad2d11ebbfcb91417afe110a0bf0841d7bfc84909a4e
6
+ metadata.gz: b32289a61205bbfccc3e13e1948876fab60799f088dda51ef7f8dac17ae9fd99d3c544ff6eb214360c61d86e90e6053cc8edd3d37814e27eed03e475d0775775
7
+ data.tar.gz: b4008cf744754132edd9588059353208d0a2fbd9d638704df260202ce2438840d729986b3f86b2464908b6304e1b5fbb4ff2757d4163008f7bde2827f3e75974
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2024-07-05)
5
+ ------------------
6
+
7
+ * Feature - Added further restrictions on logging of potentially sensitive inputs and outputs.
8
+
9
+ 1.17.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.16.0 (2024-07-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -312,6 +312,15 @@ module Aws::PaymentCryptographyData
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -494,11 +503,11 @@ module Aws::PaymentCryptographyData
494
503
  #
495
504
  # resp = client.decrypt_data({
496
505
  # key_identifier: "KeyArnOrKeyAliasType", # required
497
- # cipher_text: "HexEvenLengthBetween16And4096", # required
506
+ # cipher_text: "CipherTextType", # required
498
507
  # decryption_attributes: { # required
499
508
  # symmetric: {
500
509
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
501
- # initialization_vector: "HexLength16Or32",
510
+ # initialization_vector: "InitializationVectorType",
502
511
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
503
512
  # },
504
513
  # asymmetric: {
@@ -509,15 +518,15 @@ module Aws::PaymentCryptographyData
509
518
  # mode: "ECB", # accepts ECB, CBC
510
519
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
511
520
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
512
- # initialization_vector: "HexLength16Or32",
521
+ # initialization_vector: "InitializationVectorType",
513
522
  # },
514
523
  # emv: {
515
524
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
516
- # primary_account_number: "NumberLengthBetween12And19", # required
525
+ # primary_account_number: "PrimaryAccountNumberType", # required
517
526
  # pan_sequence_number: "NumberLengthEquals2", # required
518
- # session_derivation_data: "HexLengthEquals16", # required
527
+ # session_derivation_data: "SessionDerivationDataType", # required
519
528
  # mode: "ECB", # accepts ECB, CBC
520
- # initialization_vector: "HexLength16Or32",
529
+ # initialization_vector: "InitializationVectorType",
521
530
  # },
522
531
  # },
523
532
  # wrapped_key: {
@@ -640,11 +649,11 @@ module Aws::PaymentCryptographyData
640
649
  #
641
650
  # resp = client.encrypt_data({
642
651
  # key_identifier: "KeyArnOrKeyAliasType", # required
643
- # plain_text: "HexEvenLengthBetween16And4064", # required
652
+ # plain_text: "PlainTextType", # required
644
653
  # encryption_attributes: { # required
645
654
  # symmetric: {
646
655
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
647
- # initialization_vector: "HexLength16Or32",
656
+ # initialization_vector: "InitializationVectorType",
648
657
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
649
658
  # },
650
659
  # asymmetric: {
@@ -655,15 +664,15 @@ module Aws::PaymentCryptographyData
655
664
  # mode: "ECB", # accepts ECB, CBC
656
665
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
657
666
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
658
- # initialization_vector: "HexLength16Or32",
667
+ # initialization_vector: "InitializationVectorType",
659
668
  # },
660
669
  # emv: {
661
670
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
662
- # primary_account_number: "NumberLengthBetween12And19", # required
671
+ # primary_account_number: "PrimaryAccountNumberType", # required
663
672
  # pan_sequence_number: "NumberLengthEquals2", # required
664
- # session_derivation_data: "HexLengthEquals16", # required
673
+ # session_derivation_data: "SessionDerivationDataType", # required
665
674
  # mode: "ECB", # accepts ECB, CBC
666
- # initialization_vector: "HexLength16Or32",
675
+ # initialization_vector: "InitializationVectorType",
667
676
  # },
668
677
  # },
669
678
  # wrapped_key: {
@@ -753,21 +762,21 @@ module Aws::PaymentCryptographyData
753
762
  #
754
763
  # resp = client.generate_card_validation_data({
755
764
  # key_identifier: "KeyArnOrKeyAliasType", # required
756
- # primary_account_number: "NumberLengthBetween12And19", # required
765
+ # primary_account_number: "PrimaryAccountNumberType", # required
757
766
  # generation_attributes: { # required
758
767
  # amex_card_security_code_version_1: {
759
- # card_expiry_date: "NumberLengthEquals4", # required
768
+ # card_expiry_date: "CardExpiryDateType", # required
760
769
  # },
761
770
  # amex_card_security_code_version_2: {
762
- # card_expiry_date: "NumberLengthEquals4", # required
763
- # service_code: "NumberLengthEquals3", # required
771
+ # card_expiry_date: "CardExpiryDateType", # required
772
+ # service_code: "ServiceCodeType", # required
764
773
  # },
765
774
  # card_verification_value_1: {
766
- # card_expiry_date: "NumberLengthEquals4", # required
767
- # service_code: "NumberLengthEquals3", # required
775
+ # card_expiry_date: "CardExpiryDateType", # required
776
+ # service_code: "ServiceCodeType", # required
768
777
  # },
769
778
  # card_verification_value_2: {
770
- # card_expiry_date: "NumberLengthEquals4", # required
779
+ # card_expiry_date: "CardExpiryDateType", # required
771
780
  # },
772
781
  # card_holder_verification_value: {
773
782
  # unpredictable_number: "HexLengthBetween2And8", # required
@@ -778,12 +787,12 @@ module Aws::PaymentCryptographyData
778
787
  # unpredictable_number: "HexLengthBetween2And8", # required
779
788
  # pan_sequence_number: "NumberLengthEquals2", # required
780
789
  # application_transaction_counter: "HexLengthBetween2And4", # required
781
- # track_data: "HexLengthBetween2And160", # required
790
+ # track_data: "TrackDataType", # required
782
791
  # },
783
792
  # dynamic_card_verification_value: {
784
793
  # pan_sequence_number: "NumberLengthEquals2", # required
785
- # card_expiry_date: "NumberLengthEquals4", # required
786
- # service_code: "NumberLengthEquals3", # required
794
+ # card_expiry_date: "CardExpiryDateType", # required
795
+ # service_code: "ServiceCodeType", # required
787
796
  # application_transaction_counter: "HexLengthBetween2And4", # required
788
797
  # },
789
798
  # },
@@ -865,16 +874,16 @@ module Aws::PaymentCryptographyData
865
874
  #
866
875
  # resp = client.generate_mac({
867
876
  # key_identifier: "KeyArnOrKeyAliasType", # required
868
- # message_data: "HexEvenLengthBetween2And4096", # required
877
+ # message_data: "MessageDataType", # required
869
878
  # generation_attributes: { # required
870
879
  # algorithm: "ISO9797_ALGORITHM1", # accepts ISO9797_ALGORITHM1, ISO9797_ALGORITHM3, CMAC, HMAC_SHA224, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512
871
880
  # emv_mac: {
872
881
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
873
- # primary_account_number: "NumberLengthBetween12And19", # required
882
+ # primary_account_number: "PrimaryAccountNumberType", # required
874
883
  # pan_sequence_number: "NumberLengthEquals2", # required
875
884
  # session_key_derivation_mode: "EMV_COMMON_SESSION_KEY", # required, accepts EMV_COMMON_SESSION_KEY, EMV2000, AMEX, MASTERCARD_SESSION_KEY, VISA
876
885
  # session_key_derivation_value: { # required
877
- # application_cryptogram: "HexLengthEquals16",
886
+ # application_cryptogram: "ApplicationCryptogramType",
878
887
  # application_transaction_counter: "HexLengthBetween2And4",
879
888
  # },
880
889
  # },
@@ -997,34 +1006,34 @@ module Aws::PaymentCryptographyData
997
1006
  # pin_verification_key_index: 1, # required
998
1007
  # },
999
1008
  # visa_pin_verification_value: {
1000
- # encrypted_pin_block: "HexLengthBetween16And32", # required
1009
+ # encrypted_pin_block: "EncryptedPinBlockType", # required
1001
1010
  # pin_verification_key_index: 1, # required
1002
1011
  # },
1003
1012
  # ibm_3624_pin_offset: {
1004
- # encrypted_pin_block: "HexLengthBetween16And32", # required
1005
- # decimalization_table: "NumberLengthEquals16", # required
1013
+ # encrypted_pin_block: "EncryptedPinBlockType", # required
1014
+ # decimalization_table: "DecimalizationTableType", # required
1006
1015
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1007
- # pin_validation_data: "NumberLengthBetween4And16", # required
1016
+ # pin_validation_data: "PinValidationDataType", # required
1008
1017
  # },
1009
1018
  # ibm_3624_natural_pin: {
1010
- # decimalization_table: "NumberLengthEquals16", # required
1019
+ # decimalization_table: "DecimalizationTableType", # required
1011
1020
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1012
- # pin_validation_data: "NumberLengthBetween4And16", # required
1021
+ # pin_validation_data: "PinValidationDataType", # required
1013
1022
  # },
1014
1023
  # ibm_3624_random_pin: {
1015
- # decimalization_table: "NumberLengthEquals16", # required
1024
+ # decimalization_table: "DecimalizationTableType", # required
1016
1025
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1017
- # pin_validation_data: "NumberLengthBetween4And16", # required
1026
+ # pin_validation_data: "PinValidationDataType", # required
1018
1027
  # },
1019
1028
  # ibm_3624_pin_from_offset: {
1020
- # decimalization_table: "NumberLengthEquals16", # required
1029
+ # decimalization_table: "DecimalizationTableType", # required
1021
1030
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1022
- # pin_validation_data: "NumberLengthBetween4And16", # required
1023
- # pin_offset: "NumberLengthBetween4And12", # required
1031
+ # pin_validation_data: "PinValidationDataType", # required
1032
+ # pin_offset: "PinOffsetType", # required
1024
1033
  # },
1025
1034
  # },
1026
1035
  # pin_data_length: 1,
1027
- # primary_account_number: "NumberLengthBetween12And19", # required
1036
+ # primary_account_number: "PrimaryAccountNumberType", # required
1028
1037
  # pin_block_format: "ISO_FORMAT_0", # required, accepts ISO_FORMAT_0, ISO_FORMAT_3
1029
1038
  # })
1030
1039
  #
@@ -1129,11 +1138,11 @@ module Aws::PaymentCryptographyData
1129
1138
  # resp = client.re_encrypt_data({
1130
1139
  # incoming_key_identifier: "KeyArnOrKeyAliasType", # required
1131
1140
  # outgoing_key_identifier: "KeyArnOrKeyAliasType", # required
1132
- # cipher_text: "HexEvenLengthBetween16And4096", # required
1141
+ # cipher_text: "CipherTextType", # required
1133
1142
  # incoming_encryption_attributes: { # required
1134
1143
  # symmetric: {
1135
1144
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
1136
- # initialization_vector: "HexLength16Or32",
1145
+ # initialization_vector: "InitializationVectorType",
1137
1146
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
1138
1147
  # },
1139
1148
  # dukpt: {
@@ -1141,13 +1150,13 @@ module Aws::PaymentCryptographyData
1141
1150
  # mode: "ECB", # accepts ECB, CBC
1142
1151
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
1143
1152
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
1144
- # initialization_vector: "HexLength16Or32",
1153
+ # initialization_vector: "InitializationVectorType",
1145
1154
  # },
1146
1155
  # },
1147
1156
  # outgoing_encryption_attributes: { # required
1148
1157
  # symmetric: {
1149
1158
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
1150
- # initialization_vector: "HexLength16Or32",
1159
+ # initialization_vector: "InitializationVectorType",
1151
1160
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
1152
1161
  # },
1153
1162
  # dukpt: {
@@ -1155,7 +1164,7 @@ module Aws::PaymentCryptographyData
1155
1164
  # mode: "ECB", # accepts ECB, CBC
1156
1165
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
1157
1166
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
1158
- # initialization_vector: "HexLength16Or32",
1167
+ # initialization_vector: "InitializationVectorType",
1159
1168
  # },
1160
1169
  # },
1161
1170
  # incoming_wrapped_key: {
@@ -1286,28 +1295,28 @@ module Aws::PaymentCryptographyData
1286
1295
  # outgoing_key_identifier: "KeyArnOrKeyAliasType", # required
1287
1296
  # incoming_translation_attributes: { # required
1288
1297
  # iso_format_0: {
1289
- # primary_account_number: "NumberLengthBetween12And19", # required
1298
+ # primary_account_number: "PrimaryAccountNumberType", # required
1290
1299
  # },
1291
1300
  # iso_format_1: {
1292
1301
  # },
1293
1302
  # iso_format_3: {
1294
- # primary_account_number: "NumberLengthBetween12And19", # required
1303
+ # primary_account_number: "PrimaryAccountNumberType", # required
1295
1304
  # },
1296
1305
  # iso_format_4: {
1297
- # primary_account_number: "NumberLengthBetween12And19", # required
1306
+ # primary_account_number: "PrimaryAccountNumberType", # required
1298
1307
  # },
1299
1308
  # },
1300
1309
  # outgoing_translation_attributes: { # required
1301
1310
  # iso_format_0: {
1302
- # primary_account_number: "NumberLengthBetween12And19", # required
1311
+ # primary_account_number: "PrimaryAccountNumberType", # required
1303
1312
  # },
1304
1313
  # iso_format_1: {
1305
1314
  # },
1306
1315
  # iso_format_3: {
1307
- # primary_account_number: "NumberLengthBetween12And19", # required
1316
+ # primary_account_number: "PrimaryAccountNumberType", # required
1308
1317
  # },
1309
1318
  # iso_format_4: {
1310
- # primary_account_number: "NumberLengthBetween12And19", # required
1319
+ # primary_account_number: "PrimaryAccountNumberType", # required
1311
1320
  # },
1312
1321
  # },
1313
1322
  # encrypted_pin_block: "HexEvenLengthBetween16And32", # required
@@ -1430,32 +1439,32 @@ module Aws::PaymentCryptographyData
1430
1439
  #
1431
1440
  # resp = client.verify_auth_request_cryptogram({
1432
1441
  # key_identifier: "KeyArnOrKeyAliasType", # required
1433
- # transaction_data: "HexLengthBetween2And1024", # required
1434
- # auth_request_cryptogram: "HexLengthEquals16", # required
1442
+ # transaction_data: "TransactionDataType", # required
1443
+ # auth_request_cryptogram: "AuthRequestCryptogramType", # required
1435
1444
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
1436
1445
  # session_key_derivation_attributes: { # required
1437
1446
  # emv_common: {
1438
- # primary_account_number: "NumberLengthBetween12And19", # required
1447
+ # primary_account_number: "PrimaryAccountNumberType", # required
1439
1448
  # pan_sequence_number: "NumberLengthEquals2", # required
1440
1449
  # application_transaction_counter: "HexLengthBetween2And4", # required
1441
1450
  # },
1442
1451
  # mastercard: {
1443
- # primary_account_number: "NumberLengthBetween12And19", # required
1452
+ # primary_account_number: "PrimaryAccountNumberType", # required
1444
1453
  # pan_sequence_number: "NumberLengthEquals2", # required
1445
1454
  # application_transaction_counter: "HexLengthBetween2And4", # required
1446
1455
  # unpredictable_number: "HexLengthBetween2And8", # required
1447
1456
  # },
1448
1457
  # emv_2000: {
1449
- # primary_account_number: "NumberLengthBetween12And19", # required
1458
+ # primary_account_number: "PrimaryAccountNumberType", # required
1450
1459
  # pan_sequence_number: "NumberLengthEquals2", # required
1451
1460
  # application_transaction_counter: "HexLengthBetween2And4", # required
1452
1461
  # },
1453
1462
  # amex: {
1454
- # primary_account_number: "NumberLengthBetween12And19", # required
1463
+ # primary_account_number: "PrimaryAccountNumberType", # required
1455
1464
  # pan_sequence_number: "NumberLengthEquals2", # required
1456
1465
  # },
1457
1466
  # visa: {
1458
- # primary_account_number: "NumberLengthBetween12And19", # required
1467
+ # primary_account_number: "PrimaryAccountNumberType", # required
1459
1468
  # pan_sequence_number: "NumberLengthEquals2", # required
1460
1469
  # },
1461
1470
  # },
@@ -1465,7 +1474,7 @@ module Aws::PaymentCryptographyData
1465
1474
  # },
1466
1475
  # arpc_method_2: {
1467
1476
  # card_status_update: "HexLengthEquals8", # required
1468
- # proprietary_authentication_data: "HexLengthBetween1And16",
1477
+ # proprietary_authentication_data: "ProprietaryAuthenticationDataType",
1469
1478
  # },
1470
1479
  # },
1471
1480
  # })
@@ -1549,21 +1558,21 @@ module Aws::PaymentCryptographyData
1549
1558
  #
1550
1559
  # resp = client.verify_card_validation_data({
1551
1560
  # key_identifier: "KeyArnOrKeyAliasType", # required
1552
- # primary_account_number: "NumberLengthBetween12And19", # required
1561
+ # primary_account_number: "PrimaryAccountNumberType", # required
1553
1562
  # verification_attributes: { # required
1554
1563
  # amex_card_security_code_version_1: {
1555
- # card_expiry_date: "NumberLengthEquals4", # required
1564
+ # card_expiry_date: "CardExpiryDateType", # required
1556
1565
  # },
1557
1566
  # amex_card_security_code_version_2: {
1558
- # card_expiry_date: "NumberLengthEquals4", # required
1559
- # service_code: "NumberLengthEquals3", # required
1567
+ # card_expiry_date: "CardExpiryDateType", # required
1568
+ # service_code: "ServiceCodeType", # required
1560
1569
  # },
1561
1570
  # card_verification_value_1: {
1562
- # card_expiry_date: "NumberLengthEquals4", # required
1563
- # service_code: "NumberLengthEquals3", # required
1571
+ # card_expiry_date: "CardExpiryDateType", # required
1572
+ # service_code: "ServiceCodeType", # required
1564
1573
  # },
1565
1574
  # card_verification_value_2: {
1566
- # card_expiry_date: "NumberLengthEquals4", # required
1575
+ # card_expiry_date: "CardExpiryDateType", # required
1567
1576
  # },
1568
1577
  # card_holder_verification_value: {
1569
1578
  # unpredictable_number: "HexLengthBetween2And8", # required
@@ -1574,21 +1583,21 @@ module Aws::PaymentCryptographyData
1574
1583
  # unpredictable_number: "HexLengthBetween2And8", # required
1575
1584
  # pan_sequence_number: "NumberLengthEquals2", # required
1576
1585
  # application_transaction_counter: "HexLengthBetween2And4", # required
1577
- # track_data: "HexLengthBetween2And160", # required
1586
+ # track_data: "TrackDataType", # required
1578
1587
  # },
1579
1588
  # dynamic_card_verification_value: {
1580
1589
  # pan_sequence_number: "NumberLengthEquals2", # required
1581
- # card_expiry_date: "NumberLengthEquals4", # required
1582
- # service_code: "NumberLengthEquals3", # required
1590
+ # card_expiry_date: "CardExpiryDateType", # required
1591
+ # service_code: "ServiceCodeType", # required
1583
1592
  # application_transaction_counter: "HexLengthBetween2And4", # required
1584
1593
  # },
1585
1594
  # discover_dynamic_card_verification_code: {
1586
- # card_expiry_date: "NumberLengthEquals4", # required
1595
+ # card_expiry_date: "CardExpiryDateType", # required
1587
1596
  # unpredictable_number: "HexLengthBetween2And8", # required
1588
1597
  # application_transaction_counter: "HexLengthBetween2And4", # required
1589
1598
  # },
1590
1599
  # },
1591
- # validation_data: "NumberLengthBetween3And5", # required
1600
+ # validation_data: "ValidationDataType", # required
1592
1601
  # })
1593
1602
  #
1594
1603
  # @example Response structure
@@ -1660,17 +1669,17 @@ module Aws::PaymentCryptographyData
1660
1669
  #
1661
1670
  # resp = client.verify_mac({
1662
1671
  # key_identifier: "KeyArnOrKeyAliasType", # required
1663
- # message_data: "HexEvenLengthBetween2And4096", # required
1664
- # mac: "HexEvenLengthBetween4And128", # required
1672
+ # message_data: "MessageDataType", # required
1673
+ # mac: "MacType", # required
1665
1674
  # verification_attributes: { # required
1666
1675
  # algorithm: "ISO9797_ALGORITHM1", # accepts ISO9797_ALGORITHM1, ISO9797_ALGORITHM3, CMAC, HMAC_SHA224, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512
1667
1676
  # emv_mac: {
1668
1677
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
1669
- # primary_account_number: "NumberLengthBetween12And19", # required
1678
+ # primary_account_number: "PrimaryAccountNumberType", # required
1670
1679
  # pan_sequence_number: "NumberLengthEquals2", # required
1671
1680
  # session_key_derivation_mode: "EMV_COMMON_SESSION_KEY", # required, accepts EMV_COMMON_SESSION_KEY, EMV2000, AMEX, MASTERCARD_SESSION_KEY, VISA
1672
1681
  # session_key_derivation_value: { # required
1673
- # application_cryptogram: "HexLengthEquals16",
1682
+ # application_cryptogram: "ApplicationCryptogramType",
1674
1683
  # application_transaction_counter: "HexLengthBetween2And4",
1675
1684
  # },
1676
1685
  # },
@@ -1790,17 +1799,17 @@ module Aws::PaymentCryptographyData
1790
1799
  # verification_attributes: { # required
1791
1800
  # visa_pin: {
1792
1801
  # pin_verification_key_index: 1, # required
1793
- # verification_value: "NumberLengthBetween4And12", # required
1802
+ # verification_value: "VerificationValueType", # required
1794
1803
  # },
1795
1804
  # ibm_3624_pin: {
1796
- # decimalization_table: "NumberLengthEquals16", # required
1805
+ # decimalization_table: "DecimalizationTableType", # required
1797
1806
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1798
- # pin_validation_data: "NumberLengthBetween4And16", # required
1799
- # pin_offset: "NumberLengthBetween4And12", # required
1807
+ # pin_validation_data: "PinValidationDataType", # required
1808
+ # pin_offset: "PinOffsetType", # required
1800
1809
  # },
1801
1810
  # },
1802
- # encrypted_pin_block: "HexLengthBetween16And32", # required
1803
- # primary_account_number: "NumberLengthBetween12And19", # required
1811
+ # encrypted_pin_block: "EncryptedPinBlockType", # required
1812
+ # primary_account_number: "PrimaryAccountNumberType", # required
1804
1813
  # pin_block_format: "ISO_FORMAT_0", # required, accepts ISO_FORMAT_0, ISO_FORMAT_3
1805
1814
  # pin_data_length: 1,
1806
1815
  # dukpt_attributes: {
@@ -1838,7 +1847,7 @@ module Aws::PaymentCryptographyData
1838
1847
  params: params,
1839
1848
  config: config)
1840
1849
  context[:gem_name] = 'aws-sdk-paymentcryptographydata'
1841
- context[:gem_version] = '1.16.0'
1850
+ context[:gem_version] = '1.18.0'
1842
1851
  Seahorse::Client::Request.new(handlers, context)
1843
1852
  end
1844
1853