aws-sdk-paymentcryptographydata 1.17.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: 7733eb6531ce0c730cf309a04e5a27e2aa041536d6e38d7ce01a9200e2b2dcd3
4
- data.tar.gz: 86d959b197f87a5e5eaef31a351dd242807b3be096e497cdd1545b14568fe4da
3
+ metadata.gz: f9d8c37eaa03d0646ca715ed43a42b893d77e0c473043918e452eb49480fb0b0
4
+ data.tar.gz: 25480637eb9a8fd486a98d27daf25819e6c00b340a14ca6b5453bd304a3f7b89
5
5
  SHA512:
6
- metadata.gz: dedbf5c4d2747704df55c082062f8bec2e31bb5e3927b572c789e6e220fe40029cb4ad5874802fd351aa12d73e410ae71edb36ebf125646cb9163cadac38c6f3
7
- data.tar.gz: c7e83fd4cddc4eb44ed2dfdc6af9aac8d50d3184f9be7b98a681bad73a1f60607ba33b6565f5e273d27754ddd3b69781efbb19dff4e9dcddbf3430cdf5a2cf44
6
+ metadata.gz: b32289a61205bbfccc3e13e1948876fab60799f088dda51ef7f8dac17ae9fd99d3c544ff6eb214360c61d86e90e6053cc8edd3d37814e27eed03e475d0775775
7
+ data.tar.gz: b4008cf744754132edd9588059353208d0a2fbd9d638704df260202ce2438840d729986b3f86b2464908b6304e1b5fbb4ff2757d4163008f7bde2827f3e75974
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.17.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -503,11 +503,11 @@ module Aws::PaymentCryptographyData
503
503
  #
504
504
  # resp = client.decrypt_data({
505
505
  # key_identifier: "KeyArnOrKeyAliasType", # required
506
- # cipher_text: "HexEvenLengthBetween16And4096", # required
506
+ # cipher_text: "CipherTextType", # required
507
507
  # decryption_attributes: { # required
508
508
  # symmetric: {
509
509
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
510
- # initialization_vector: "HexLength16Or32",
510
+ # initialization_vector: "InitializationVectorType",
511
511
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
512
512
  # },
513
513
  # asymmetric: {
@@ -518,15 +518,15 @@ module Aws::PaymentCryptographyData
518
518
  # mode: "ECB", # accepts ECB, CBC
519
519
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
520
520
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
521
- # initialization_vector: "HexLength16Or32",
521
+ # initialization_vector: "InitializationVectorType",
522
522
  # },
523
523
  # emv: {
524
524
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
525
- # primary_account_number: "NumberLengthBetween12And19", # required
525
+ # primary_account_number: "PrimaryAccountNumberType", # required
526
526
  # pan_sequence_number: "NumberLengthEquals2", # required
527
- # session_derivation_data: "HexLengthEquals16", # required
527
+ # session_derivation_data: "SessionDerivationDataType", # required
528
528
  # mode: "ECB", # accepts ECB, CBC
529
- # initialization_vector: "HexLength16Or32",
529
+ # initialization_vector: "InitializationVectorType",
530
530
  # },
531
531
  # },
532
532
  # wrapped_key: {
@@ -649,11 +649,11 @@ module Aws::PaymentCryptographyData
649
649
  #
650
650
  # resp = client.encrypt_data({
651
651
  # key_identifier: "KeyArnOrKeyAliasType", # required
652
- # plain_text: "HexEvenLengthBetween16And4064", # required
652
+ # plain_text: "PlainTextType", # required
653
653
  # encryption_attributes: { # required
654
654
  # symmetric: {
655
655
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
656
- # initialization_vector: "HexLength16Or32",
656
+ # initialization_vector: "InitializationVectorType",
657
657
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
658
658
  # },
659
659
  # asymmetric: {
@@ -664,15 +664,15 @@ module Aws::PaymentCryptographyData
664
664
  # mode: "ECB", # accepts ECB, CBC
665
665
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
666
666
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
667
- # initialization_vector: "HexLength16Or32",
667
+ # initialization_vector: "InitializationVectorType",
668
668
  # },
669
669
  # emv: {
670
670
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
671
- # primary_account_number: "NumberLengthBetween12And19", # required
671
+ # primary_account_number: "PrimaryAccountNumberType", # required
672
672
  # pan_sequence_number: "NumberLengthEquals2", # required
673
- # session_derivation_data: "HexLengthEquals16", # required
673
+ # session_derivation_data: "SessionDerivationDataType", # required
674
674
  # mode: "ECB", # accepts ECB, CBC
675
- # initialization_vector: "HexLength16Or32",
675
+ # initialization_vector: "InitializationVectorType",
676
676
  # },
677
677
  # },
678
678
  # wrapped_key: {
@@ -762,21 +762,21 @@ module Aws::PaymentCryptographyData
762
762
  #
763
763
  # resp = client.generate_card_validation_data({
764
764
  # key_identifier: "KeyArnOrKeyAliasType", # required
765
- # primary_account_number: "NumberLengthBetween12And19", # required
765
+ # primary_account_number: "PrimaryAccountNumberType", # required
766
766
  # generation_attributes: { # required
767
767
  # amex_card_security_code_version_1: {
768
- # card_expiry_date: "NumberLengthEquals4", # required
768
+ # card_expiry_date: "CardExpiryDateType", # required
769
769
  # },
770
770
  # amex_card_security_code_version_2: {
771
- # card_expiry_date: "NumberLengthEquals4", # required
772
- # service_code: "NumberLengthEquals3", # required
771
+ # card_expiry_date: "CardExpiryDateType", # required
772
+ # service_code: "ServiceCodeType", # required
773
773
  # },
774
774
  # card_verification_value_1: {
775
- # card_expiry_date: "NumberLengthEquals4", # required
776
- # service_code: "NumberLengthEquals3", # required
775
+ # card_expiry_date: "CardExpiryDateType", # required
776
+ # service_code: "ServiceCodeType", # required
777
777
  # },
778
778
  # card_verification_value_2: {
779
- # card_expiry_date: "NumberLengthEquals4", # required
779
+ # card_expiry_date: "CardExpiryDateType", # required
780
780
  # },
781
781
  # card_holder_verification_value: {
782
782
  # unpredictable_number: "HexLengthBetween2And8", # required
@@ -787,12 +787,12 @@ module Aws::PaymentCryptographyData
787
787
  # unpredictable_number: "HexLengthBetween2And8", # required
788
788
  # pan_sequence_number: "NumberLengthEquals2", # required
789
789
  # application_transaction_counter: "HexLengthBetween2And4", # required
790
- # track_data: "HexLengthBetween2And160", # required
790
+ # track_data: "TrackDataType", # required
791
791
  # },
792
792
  # dynamic_card_verification_value: {
793
793
  # pan_sequence_number: "NumberLengthEquals2", # required
794
- # card_expiry_date: "NumberLengthEquals4", # required
795
- # service_code: "NumberLengthEquals3", # required
794
+ # card_expiry_date: "CardExpiryDateType", # required
795
+ # service_code: "ServiceCodeType", # required
796
796
  # application_transaction_counter: "HexLengthBetween2And4", # required
797
797
  # },
798
798
  # },
@@ -874,16 +874,16 @@ module Aws::PaymentCryptographyData
874
874
  #
875
875
  # resp = client.generate_mac({
876
876
  # key_identifier: "KeyArnOrKeyAliasType", # required
877
- # message_data: "HexEvenLengthBetween2And4096", # required
877
+ # message_data: "MessageDataType", # required
878
878
  # generation_attributes: { # required
879
879
  # algorithm: "ISO9797_ALGORITHM1", # accepts ISO9797_ALGORITHM1, ISO9797_ALGORITHM3, CMAC, HMAC_SHA224, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512
880
880
  # emv_mac: {
881
881
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
882
- # primary_account_number: "NumberLengthBetween12And19", # required
882
+ # primary_account_number: "PrimaryAccountNumberType", # required
883
883
  # pan_sequence_number: "NumberLengthEquals2", # required
884
884
  # session_key_derivation_mode: "EMV_COMMON_SESSION_KEY", # required, accepts EMV_COMMON_SESSION_KEY, EMV2000, AMEX, MASTERCARD_SESSION_KEY, VISA
885
885
  # session_key_derivation_value: { # required
886
- # application_cryptogram: "HexLengthEquals16",
886
+ # application_cryptogram: "ApplicationCryptogramType",
887
887
  # application_transaction_counter: "HexLengthBetween2And4",
888
888
  # },
889
889
  # },
@@ -1006,34 +1006,34 @@ module Aws::PaymentCryptographyData
1006
1006
  # pin_verification_key_index: 1, # required
1007
1007
  # },
1008
1008
  # visa_pin_verification_value: {
1009
- # encrypted_pin_block: "HexLengthBetween16And32", # required
1009
+ # encrypted_pin_block: "EncryptedPinBlockType", # required
1010
1010
  # pin_verification_key_index: 1, # required
1011
1011
  # },
1012
1012
  # ibm_3624_pin_offset: {
1013
- # encrypted_pin_block: "HexLengthBetween16And32", # required
1014
- # decimalization_table: "NumberLengthEquals16", # required
1013
+ # encrypted_pin_block: "EncryptedPinBlockType", # required
1014
+ # decimalization_table: "DecimalizationTableType", # required
1015
1015
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1016
- # pin_validation_data: "NumberLengthBetween4And16", # required
1016
+ # pin_validation_data: "PinValidationDataType", # required
1017
1017
  # },
1018
1018
  # ibm_3624_natural_pin: {
1019
- # decimalization_table: "NumberLengthEquals16", # required
1019
+ # decimalization_table: "DecimalizationTableType", # required
1020
1020
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1021
- # pin_validation_data: "NumberLengthBetween4And16", # required
1021
+ # pin_validation_data: "PinValidationDataType", # required
1022
1022
  # },
1023
1023
  # ibm_3624_random_pin: {
1024
- # decimalization_table: "NumberLengthEquals16", # required
1024
+ # decimalization_table: "DecimalizationTableType", # required
1025
1025
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1026
- # pin_validation_data: "NumberLengthBetween4And16", # required
1026
+ # pin_validation_data: "PinValidationDataType", # required
1027
1027
  # },
1028
1028
  # ibm_3624_pin_from_offset: {
1029
- # decimalization_table: "NumberLengthEquals16", # required
1029
+ # decimalization_table: "DecimalizationTableType", # required
1030
1030
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1031
- # pin_validation_data: "NumberLengthBetween4And16", # required
1032
- # pin_offset: "NumberLengthBetween4And12", # required
1031
+ # pin_validation_data: "PinValidationDataType", # required
1032
+ # pin_offset: "PinOffsetType", # required
1033
1033
  # },
1034
1034
  # },
1035
1035
  # pin_data_length: 1,
1036
- # primary_account_number: "NumberLengthBetween12And19", # required
1036
+ # primary_account_number: "PrimaryAccountNumberType", # required
1037
1037
  # pin_block_format: "ISO_FORMAT_0", # required, accepts ISO_FORMAT_0, ISO_FORMAT_3
1038
1038
  # })
1039
1039
  #
@@ -1138,11 +1138,11 @@ module Aws::PaymentCryptographyData
1138
1138
  # resp = client.re_encrypt_data({
1139
1139
  # incoming_key_identifier: "KeyArnOrKeyAliasType", # required
1140
1140
  # outgoing_key_identifier: "KeyArnOrKeyAliasType", # required
1141
- # cipher_text: "HexEvenLengthBetween16And4096", # required
1141
+ # cipher_text: "CipherTextType", # required
1142
1142
  # incoming_encryption_attributes: { # required
1143
1143
  # symmetric: {
1144
1144
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
1145
- # initialization_vector: "HexLength16Or32",
1145
+ # initialization_vector: "InitializationVectorType",
1146
1146
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
1147
1147
  # },
1148
1148
  # dukpt: {
@@ -1150,13 +1150,13 @@ module Aws::PaymentCryptographyData
1150
1150
  # mode: "ECB", # accepts ECB, CBC
1151
1151
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
1152
1152
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
1153
- # initialization_vector: "HexLength16Or32",
1153
+ # initialization_vector: "InitializationVectorType",
1154
1154
  # },
1155
1155
  # },
1156
1156
  # outgoing_encryption_attributes: { # required
1157
1157
  # symmetric: {
1158
1158
  # mode: "ECB", # required, accepts ECB, CBC, CFB, CFB1, CFB8, CFB64, CFB128, OFB
1159
- # initialization_vector: "HexLength16Or32",
1159
+ # initialization_vector: "InitializationVectorType",
1160
1160
  # padding_type: "PKCS1", # accepts PKCS1, OAEP_SHA1, OAEP_SHA256, OAEP_SHA512
1161
1161
  # },
1162
1162
  # dukpt: {
@@ -1164,7 +1164,7 @@ module Aws::PaymentCryptographyData
1164
1164
  # mode: "ECB", # accepts ECB, CBC
1165
1165
  # dukpt_key_derivation_type: "TDES_2KEY", # accepts TDES_2KEY, TDES_3KEY, AES_128, AES_192, AES_256
1166
1166
  # dukpt_key_variant: "BIDIRECTIONAL", # accepts BIDIRECTIONAL, REQUEST, RESPONSE
1167
- # initialization_vector: "HexLength16Or32",
1167
+ # initialization_vector: "InitializationVectorType",
1168
1168
  # },
1169
1169
  # },
1170
1170
  # incoming_wrapped_key: {
@@ -1295,28 +1295,28 @@ module Aws::PaymentCryptographyData
1295
1295
  # outgoing_key_identifier: "KeyArnOrKeyAliasType", # required
1296
1296
  # incoming_translation_attributes: { # required
1297
1297
  # iso_format_0: {
1298
- # primary_account_number: "NumberLengthBetween12And19", # required
1298
+ # primary_account_number: "PrimaryAccountNumberType", # required
1299
1299
  # },
1300
1300
  # iso_format_1: {
1301
1301
  # },
1302
1302
  # iso_format_3: {
1303
- # primary_account_number: "NumberLengthBetween12And19", # required
1303
+ # primary_account_number: "PrimaryAccountNumberType", # required
1304
1304
  # },
1305
1305
  # iso_format_4: {
1306
- # primary_account_number: "NumberLengthBetween12And19", # required
1306
+ # primary_account_number: "PrimaryAccountNumberType", # required
1307
1307
  # },
1308
1308
  # },
1309
1309
  # outgoing_translation_attributes: { # required
1310
1310
  # iso_format_0: {
1311
- # primary_account_number: "NumberLengthBetween12And19", # required
1311
+ # primary_account_number: "PrimaryAccountNumberType", # required
1312
1312
  # },
1313
1313
  # iso_format_1: {
1314
1314
  # },
1315
1315
  # iso_format_3: {
1316
- # primary_account_number: "NumberLengthBetween12And19", # required
1316
+ # primary_account_number: "PrimaryAccountNumberType", # required
1317
1317
  # },
1318
1318
  # iso_format_4: {
1319
- # primary_account_number: "NumberLengthBetween12And19", # required
1319
+ # primary_account_number: "PrimaryAccountNumberType", # required
1320
1320
  # },
1321
1321
  # },
1322
1322
  # encrypted_pin_block: "HexEvenLengthBetween16And32", # required
@@ -1439,32 +1439,32 @@ module Aws::PaymentCryptographyData
1439
1439
  #
1440
1440
  # resp = client.verify_auth_request_cryptogram({
1441
1441
  # key_identifier: "KeyArnOrKeyAliasType", # required
1442
- # transaction_data: "HexLengthBetween2And1024", # required
1443
- # auth_request_cryptogram: "HexLengthEquals16", # required
1442
+ # transaction_data: "TransactionDataType", # required
1443
+ # auth_request_cryptogram: "AuthRequestCryptogramType", # required
1444
1444
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
1445
1445
  # session_key_derivation_attributes: { # required
1446
1446
  # emv_common: {
1447
- # primary_account_number: "NumberLengthBetween12And19", # required
1447
+ # primary_account_number: "PrimaryAccountNumberType", # required
1448
1448
  # pan_sequence_number: "NumberLengthEquals2", # required
1449
1449
  # application_transaction_counter: "HexLengthBetween2And4", # required
1450
1450
  # },
1451
1451
  # mastercard: {
1452
- # primary_account_number: "NumberLengthBetween12And19", # required
1452
+ # primary_account_number: "PrimaryAccountNumberType", # required
1453
1453
  # pan_sequence_number: "NumberLengthEquals2", # required
1454
1454
  # application_transaction_counter: "HexLengthBetween2And4", # required
1455
1455
  # unpredictable_number: "HexLengthBetween2And8", # required
1456
1456
  # },
1457
1457
  # emv_2000: {
1458
- # primary_account_number: "NumberLengthBetween12And19", # required
1458
+ # primary_account_number: "PrimaryAccountNumberType", # required
1459
1459
  # pan_sequence_number: "NumberLengthEquals2", # required
1460
1460
  # application_transaction_counter: "HexLengthBetween2And4", # required
1461
1461
  # },
1462
1462
  # amex: {
1463
- # primary_account_number: "NumberLengthBetween12And19", # required
1463
+ # primary_account_number: "PrimaryAccountNumberType", # required
1464
1464
  # pan_sequence_number: "NumberLengthEquals2", # required
1465
1465
  # },
1466
1466
  # visa: {
1467
- # primary_account_number: "NumberLengthBetween12And19", # required
1467
+ # primary_account_number: "PrimaryAccountNumberType", # required
1468
1468
  # pan_sequence_number: "NumberLengthEquals2", # required
1469
1469
  # },
1470
1470
  # },
@@ -1474,7 +1474,7 @@ module Aws::PaymentCryptographyData
1474
1474
  # },
1475
1475
  # arpc_method_2: {
1476
1476
  # card_status_update: "HexLengthEquals8", # required
1477
- # proprietary_authentication_data: "HexLengthBetween1And16",
1477
+ # proprietary_authentication_data: "ProprietaryAuthenticationDataType",
1478
1478
  # },
1479
1479
  # },
1480
1480
  # })
@@ -1558,21 +1558,21 @@ module Aws::PaymentCryptographyData
1558
1558
  #
1559
1559
  # resp = client.verify_card_validation_data({
1560
1560
  # key_identifier: "KeyArnOrKeyAliasType", # required
1561
- # primary_account_number: "NumberLengthBetween12And19", # required
1561
+ # primary_account_number: "PrimaryAccountNumberType", # required
1562
1562
  # verification_attributes: { # required
1563
1563
  # amex_card_security_code_version_1: {
1564
- # card_expiry_date: "NumberLengthEquals4", # required
1564
+ # card_expiry_date: "CardExpiryDateType", # required
1565
1565
  # },
1566
1566
  # amex_card_security_code_version_2: {
1567
- # card_expiry_date: "NumberLengthEquals4", # required
1568
- # service_code: "NumberLengthEquals3", # required
1567
+ # card_expiry_date: "CardExpiryDateType", # required
1568
+ # service_code: "ServiceCodeType", # required
1569
1569
  # },
1570
1570
  # card_verification_value_1: {
1571
- # card_expiry_date: "NumberLengthEquals4", # required
1572
- # service_code: "NumberLengthEquals3", # required
1571
+ # card_expiry_date: "CardExpiryDateType", # required
1572
+ # service_code: "ServiceCodeType", # required
1573
1573
  # },
1574
1574
  # card_verification_value_2: {
1575
- # card_expiry_date: "NumberLengthEquals4", # required
1575
+ # card_expiry_date: "CardExpiryDateType", # required
1576
1576
  # },
1577
1577
  # card_holder_verification_value: {
1578
1578
  # unpredictable_number: "HexLengthBetween2And8", # required
@@ -1583,21 +1583,21 @@ module Aws::PaymentCryptographyData
1583
1583
  # unpredictable_number: "HexLengthBetween2And8", # required
1584
1584
  # pan_sequence_number: "NumberLengthEquals2", # required
1585
1585
  # application_transaction_counter: "HexLengthBetween2And4", # required
1586
- # track_data: "HexLengthBetween2And160", # required
1586
+ # track_data: "TrackDataType", # required
1587
1587
  # },
1588
1588
  # dynamic_card_verification_value: {
1589
1589
  # pan_sequence_number: "NumberLengthEquals2", # required
1590
- # card_expiry_date: "NumberLengthEquals4", # required
1591
- # service_code: "NumberLengthEquals3", # required
1590
+ # card_expiry_date: "CardExpiryDateType", # required
1591
+ # service_code: "ServiceCodeType", # required
1592
1592
  # application_transaction_counter: "HexLengthBetween2And4", # required
1593
1593
  # },
1594
1594
  # discover_dynamic_card_verification_code: {
1595
- # card_expiry_date: "NumberLengthEquals4", # required
1595
+ # card_expiry_date: "CardExpiryDateType", # required
1596
1596
  # unpredictable_number: "HexLengthBetween2And8", # required
1597
1597
  # application_transaction_counter: "HexLengthBetween2And4", # required
1598
1598
  # },
1599
1599
  # },
1600
- # validation_data: "NumberLengthBetween3And5", # required
1600
+ # validation_data: "ValidationDataType", # required
1601
1601
  # })
1602
1602
  #
1603
1603
  # @example Response structure
@@ -1669,17 +1669,17 @@ module Aws::PaymentCryptographyData
1669
1669
  #
1670
1670
  # resp = client.verify_mac({
1671
1671
  # key_identifier: "KeyArnOrKeyAliasType", # required
1672
- # message_data: "HexEvenLengthBetween2And4096", # required
1673
- # mac: "HexEvenLengthBetween4And128", # required
1672
+ # message_data: "MessageDataType", # required
1673
+ # mac: "MacType", # required
1674
1674
  # verification_attributes: { # required
1675
1675
  # algorithm: "ISO9797_ALGORITHM1", # accepts ISO9797_ALGORITHM1, ISO9797_ALGORITHM3, CMAC, HMAC_SHA224, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512
1676
1676
  # emv_mac: {
1677
1677
  # major_key_derivation_mode: "EMV_OPTION_A", # required, accepts EMV_OPTION_A, EMV_OPTION_B
1678
- # primary_account_number: "NumberLengthBetween12And19", # required
1678
+ # primary_account_number: "PrimaryAccountNumberType", # required
1679
1679
  # pan_sequence_number: "NumberLengthEquals2", # required
1680
1680
  # session_key_derivation_mode: "EMV_COMMON_SESSION_KEY", # required, accepts EMV_COMMON_SESSION_KEY, EMV2000, AMEX, MASTERCARD_SESSION_KEY, VISA
1681
1681
  # session_key_derivation_value: { # required
1682
- # application_cryptogram: "HexLengthEquals16",
1682
+ # application_cryptogram: "ApplicationCryptogramType",
1683
1683
  # application_transaction_counter: "HexLengthBetween2And4",
1684
1684
  # },
1685
1685
  # },
@@ -1799,17 +1799,17 @@ module Aws::PaymentCryptographyData
1799
1799
  # verification_attributes: { # required
1800
1800
  # visa_pin: {
1801
1801
  # pin_verification_key_index: 1, # required
1802
- # verification_value: "NumberLengthBetween4And12", # required
1802
+ # verification_value: "VerificationValueType", # required
1803
1803
  # },
1804
1804
  # ibm_3624_pin: {
1805
- # decimalization_table: "NumberLengthEquals16", # required
1805
+ # decimalization_table: "DecimalizationTableType", # required
1806
1806
  # pin_validation_data_pad_character: "HexLengthEquals1", # required
1807
- # pin_validation_data: "NumberLengthBetween4And16", # required
1808
- # pin_offset: "NumberLengthBetween4And12", # required
1807
+ # pin_validation_data: "PinValidationDataType", # required
1808
+ # pin_offset: "PinOffsetType", # required
1809
1809
  # },
1810
1810
  # },
1811
- # encrypted_pin_block: "HexLengthBetween16And32", # required
1812
- # primary_account_number: "NumberLengthBetween12And19", # required
1811
+ # encrypted_pin_block: "EncryptedPinBlockType", # required
1812
+ # primary_account_number: "PrimaryAccountNumberType", # required
1813
1813
  # pin_block_format: "ISO_FORMAT_0", # required, accepts ISO_FORMAT_0, ISO_FORMAT_3
1814
1814
  # pin_data_length: 1,
1815
1815
  # dukpt_attributes: {
@@ -1847,7 +1847,7 @@ module Aws::PaymentCryptographyData
1847
1847
  params: params,
1848
1848
  config: config)
1849
1849
  context[:gem_name] = 'aws-sdk-paymentcryptographydata'
1850
- context[:gem_version] = '1.17.0'
1850
+ context[:gem_version] = '1.18.0'
1851
1851
  Seahorse::Client::Request.new(handlers, context)
1852
1852
  end
1853
1853