aws-sdk-paymentcryptography 1.40.0 → 1.42.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.
@@ -12,6 +12,11 @@ module Aws::PaymentCryptography
12
12
 
13
13
  # You do not have sufficient access to perform this action.
14
14
  #
15
+ # This exception is thrown when the caller lacks the necessary IAM
16
+ # permissions to perform the requested operation. Verify that your IAM
17
+ # policy includes the required permissions for the specific Amazon Web
18
+ # Services Payment Cryptography action you're attempting.
19
+ #
15
20
  # @!attribute [rw] message
16
21
  # @return [String]
17
22
  #
@@ -23,6 +28,52 @@ module Aws::PaymentCryptography
23
28
  include Aws::Structure
24
29
  end
25
30
 
31
+ # Input parameters for adding replication regions to a specific key.
32
+ #
33
+ # @!attribute [rw] key_identifier
34
+ # The key identifier (ARN or alias) of the key for which to add
35
+ # replication regions.
36
+ #
37
+ # This key must exist and be in a valid state for replication
38
+ # operations.
39
+ # @return [String]
40
+ #
41
+ # @!attribute [rw] replication_regions
42
+ # The list of Amazon Web Services Regions to add to the key's
43
+ # replication configuration.
44
+ #
45
+ # Each region must be a valid Amazon Web Services Region where Amazon
46
+ # Web Services Payment Cryptography is available. The key will be
47
+ # replicated to these regions, allowing cryptographic operations to be
48
+ # performed closer to your applications.
49
+ # @return [Array<String>]
50
+ #
51
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/AddKeyReplicationRegionsInput AWS API Documentation
52
+ #
53
+ class AddKeyReplicationRegionsInput < Struct.new(
54
+ :key_identifier,
55
+ :replication_regions)
56
+ SENSITIVE = []
57
+ include Aws::Structure
58
+ end
59
+
60
+ # Output from adding replication regions to a key.
61
+ #
62
+ # @!attribute [rw] key
63
+ # The updated key metadata after adding the replication regions.
64
+ #
65
+ # This includes the current state of the key and its replication
66
+ # configuration.
67
+ # @return [Types::Key]
68
+ #
69
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/AddKeyReplicationRegionsOutput AWS API Documentation
70
+ #
71
+ class AddKeyReplicationRegionsOutput < Struct.new(
72
+ :key)
73
+ SENSITIVE = []
74
+ include Aws::Structure
75
+ end
76
+
26
77
  # Contains information about an alias.
27
78
  #
28
79
  # @!attribute [rw] alias_name
@@ -49,6 +100,10 @@ module Aws::PaymentCryptography
49
100
 
50
101
  # This request can cause an inconsistent state for the resource.
51
102
  #
103
+ # The requested operation conflicts with the current state of the
104
+ # resource. For example, attempting to delete a key that is currently
105
+ # being used, or trying to create a resource that already exists.
106
+ #
52
107
  # @!attribute [rw] message
53
108
  # @return [String]
54
109
  #
@@ -158,6 +213,16 @@ module Aws::PaymentCryptography
158
213
  # cryptographic usage of keys derived from it using ECDH.
159
214
  # @return [String]
160
215
  #
216
+ # @!attribute [rw] replication_regions
217
+ # A list of Amazon Web Services Regions for key replication
218
+ # operations.
219
+ #
220
+ # Each region in the list must be a valid Amazon Web Services Region
221
+ # identifier where Amazon Web Services Payment Cryptography is
222
+ # available. This list is used to specify which regions should be
223
+ # added to or removed from a key's replication configuration.
224
+ # @return [Array<String>]
225
+ #
161
226
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/CreateKeyInput AWS API Documentation
162
227
  #
163
228
  class CreateKeyInput < Struct.new(
@@ -166,7 +231,8 @@ module Aws::PaymentCryptography
166
231
  :exportable,
167
232
  :enabled,
168
233
  :tags,
169
- :derive_key_usage)
234
+ :derive_key_usage,
235
+ :replication_regions)
170
236
  SENSITIVE = []
171
237
  include Aws::Structure
172
238
  end
@@ -260,6 +326,81 @@ module Aws::PaymentCryptography
260
326
  class Unknown < DiffieHellmanDerivationData; end
261
327
  end
262
328
 
329
+ # Input parameters for disabling default key replication regions for the
330
+ # account.
331
+ #
332
+ # @!attribute [rw] replication_regions
333
+ # The list of Amazon Web Services Regions to remove from the
334
+ # account's default replication regions.
335
+ #
336
+ # New keys created after this operation will not automatically be
337
+ # replicated to these regions, though existing keys with replication
338
+ # to these regions will be unaffected.
339
+ # @return [Array<String>]
340
+ #
341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/DisableDefaultKeyReplicationRegionsInput AWS API Documentation
342
+ #
343
+ class DisableDefaultKeyReplicationRegionsInput < Struct.new(
344
+ :replication_regions)
345
+ SENSITIVE = []
346
+ include Aws::Structure
347
+ end
348
+
349
+ # Output from disabling default key replication regions for the account.
350
+ #
351
+ # @!attribute [rw] enabled_replication_regions
352
+ # The remaining list of regions where default key replication is still
353
+ # enabled for the account.
354
+ #
355
+ # This reflects the account's default replication configuration after
356
+ # removing the specified regions.
357
+ # @return [Array<String>]
358
+ #
359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/DisableDefaultKeyReplicationRegionsOutput AWS API Documentation
360
+ #
361
+ class DisableDefaultKeyReplicationRegionsOutput < Struct.new(
362
+ :enabled_replication_regions)
363
+ SENSITIVE = []
364
+ include Aws::Structure
365
+ end
366
+
367
+ # Input parameters for enabling default key replication regions for the
368
+ # account.
369
+ #
370
+ # @!attribute [rw] replication_regions
371
+ # The list of Amazon Web Services Regions to enable as default
372
+ # replication regions for the account.
373
+ #
374
+ # New keys created in this account will automatically be replicated to
375
+ # these regions unless explicitly overridden during key creation.
376
+ # @return [Array<String>]
377
+ #
378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/EnableDefaultKeyReplicationRegionsInput AWS API Documentation
379
+ #
380
+ class EnableDefaultKeyReplicationRegionsInput < Struct.new(
381
+ :replication_regions)
382
+ SENSITIVE = []
383
+ include Aws::Structure
384
+ end
385
+
386
+ # Output from enabling default key replication regions for the account.
387
+ #
388
+ # @!attribute [rw] enabled_replication_regions
389
+ # The complete list of regions where default key replication is now
390
+ # enabled for the account.
391
+ #
392
+ # This includes both previously enabled regions and the newly added
393
+ # regions from this operation.
394
+ # @return [Array<String>]
395
+ #
396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/EnableDefaultKeyReplicationRegionsOutput AWS API Documentation
397
+ #
398
+ class EnableDefaultKeyReplicationRegionsOutput < Struct.new(
399
+ :enabled_replication_regions)
400
+ SENSITIVE = []
401
+ include Aws::Structure
402
+ end
403
+
263
404
  # The attributes for IPEK generation during export.
264
405
  #
265
406
  # @!attribute [rw] export_dukpt_initial_key
@@ -338,7 +479,7 @@ module Aws::PaymentCryptography
338
479
  :key_derivation_hash_algorithm,
339
480
  :derivation_data,
340
481
  :key_block_headers)
341
- SENSITIVE = [:public_key_certificate]
482
+ SENSITIVE = []
342
483
  include Aws::Structure
343
484
  end
344
485
 
@@ -384,7 +525,7 @@ module Aws::PaymentCryptography
384
525
  :certificate_authority_public_key_identifier,
385
526
  :wrapping_key_certificate,
386
527
  :wrapping_spec)
387
- SENSITIVE = [:wrapping_key_certificate]
528
+ SENSITIVE = []
388
529
  include Aws::Structure
389
530
  end
390
531
 
@@ -544,7 +685,7 @@ module Aws::PaymentCryptography
544
685
  :key_block_format,
545
686
  :random_nonce,
546
687
  :key_block_headers)
547
- SENSITIVE = [:wrapping_key_certificate]
688
+ SENSITIVE = []
548
689
  include Aws::Structure
549
690
  end
550
691
 
@@ -572,6 +713,35 @@ module Aws::PaymentCryptography
572
713
  include Aws::Structure
573
714
  end
574
715
 
716
+ # Input parameters for retrieving the account's default key replication
717
+ # regions. This operation requires no input parameters.
718
+ #
719
+ # @api private
720
+ #
721
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/GetDefaultKeyReplicationRegionsInput AWS API Documentation
722
+ #
723
+ class GetDefaultKeyReplicationRegionsInput < Aws::EmptyStructure; end
724
+
725
+ # Output containing the account's current default key replication
726
+ # configuration.
727
+ #
728
+ # @!attribute [rw] enabled_replication_regions
729
+ # The list of regions where default key replication is currently
730
+ # enabled for the account.
731
+ #
732
+ # New keys created in this account will automatically be replicated to
733
+ # these regions unless explicitly configured otherwise during key
734
+ # creation.
735
+ # @return [Array<String>]
736
+ #
737
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/GetDefaultKeyReplicationRegionsOutput AWS API Documentation
738
+ #
739
+ class GetDefaultKeyReplicationRegionsOutput < Struct.new(
740
+ :enabled_replication_regions)
741
+ SENSITIVE = []
742
+ include Aws::Structure
743
+ end
744
+
575
745
  # @!attribute [rw] key_identifier
576
746
  # The `KeyARN` of the Amazon Web Services Payment Cryptography key.
577
747
  # @return [String]
@@ -585,8 +755,9 @@ module Aws::PaymentCryptography
585
755
  end
586
756
 
587
757
  # @!attribute [rw] key
588
- # The key material, including the immutable and mutable data for the
589
- # key.
758
+ # Contains the key metadata, including both immutable and mutable
759
+ # attributes for the key, but does not include actual cryptographic
760
+ # key material.
590
761
  # @return [Types::Key]
591
762
  #
592
763
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/GetKeyOutput AWS API Documentation
@@ -655,7 +826,7 @@ module Aws::PaymentCryptography
655
826
  :signing_key_algorithm,
656
827
  :export_token,
657
828
  :parameters_valid_until_timestamp)
658
- SENSITIVE = [:signing_key_certificate, :signing_key_certificate_chain]
829
+ SENSITIVE = []
659
830
  include Aws::Structure
660
831
  end
661
832
 
@@ -723,7 +894,7 @@ module Aws::PaymentCryptography
723
894
  :wrapping_key_algorithm,
724
895
  :import_token,
725
896
  :parameters_valid_until_timestamp)
726
- SENSITIVE = [:wrapping_key_certificate, :wrapping_key_certificate_chain]
897
+ SENSITIVE = []
727
898
  include Aws::Structure
728
899
  end
729
900
 
@@ -756,7 +927,7 @@ module Aws::PaymentCryptography
756
927
  class GetPublicKeyCertificateOutput < Struct.new(
757
928
  :key_certificate,
758
929
  :key_certificate_chain)
759
- SENSITIVE = [:key_certificate, :key_certificate_chain]
930
+ SENSITIVE = []
760
931
  include Aws::Structure
761
932
  end
762
933
 
@@ -809,7 +980,7 @@ module Aws::PaymentCryptography
809
980
  :key_derivation_hash_algorithm,
810
981
  :derivation_data,
811
982
  :wrapped_key_block)
812
- SENSITIVE = [:public_key_certificate, :wrapped_key_block]
983
+ SENSITIVE = [:wrapped_key_block]
813
984
  include Aws::Structure
814
985
  end
815
986
 
@@ -903,13 +1074,24 @@ module Aws::PaymentCryptography
903
1074
  # [1]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_TagResource.html
904
1075
  # @return [Array<Types::Tag>]
905
1076
  #
1077
+ # @!attribute [rw] replication_regions
1078
+ # A list of Amazon Web Services Regions for key replication
1079
+ # operations.
1080
+ #
1081
+ # Each region in the list must be a valid Amazon Web Services Region
1082
+ # identifier where Amazon Web Services Payment Cryptography is
1083
+ # available. This list is used to specify which regions should be
1084
+ # added to or removed from a key's replication configuration.
1085
+ # @return [Array<String>]
1086
+ #
906
1087
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/ImportKeyInput AWS API Documentation
907
1088
  #
908
1089
  class ImportKeyInput < Struct.new(
909
1090
  :key_material,
910
1091
  :key_check_value_algorithm,
911
1092
  :enabled,
912
- :tags)
1093
+ :tags,
1094
+ :replication_regions)
913
1095
  SENSITIVE = []
914
1096
  include Aws::Structure
915
1097
  end
@@ -1049,13 +1231,17 @@ module Aws::PaymentCryptography
1049
1231
  :wrapped_key_block,
1050
1232
  :key_block_format,
1051
1233
  :random_nonce)
1052
- SENSITIVE = [:signing_key_certificate, :wrapped_key_block]
1234
+ SENSITIVE = [:wrapped_key_block]
1053
1235
  include Aws::Structure
1054
1236
  end
1055
1237
 
1056
1238
  # The request processing has failed because of an unknown error,
1057
1239
  # exception, or failure.
1058
1240
  #
1241
+ # This indicates a server-side error within the Amazon Web Services
1242
+ # Payment Cryptography service. If this error persists, contact support
1243
+ # for assistance.
1244
+ #
1059
1245
  # @!attribute [rw] message
1060
1246
  # @return [String]
1061
1247
  #
@@ -1152,6 +1338,46 @@ module Aws::PaymentCryptography
1152
1338
  # A.5.2 of the TR-31 spec.
1153
1339
  # @return [String]
1154
1340
  #
1341
+ # @!attribute [rw] multi_region_key_type
1342
+ # Indicates whether this key is a multi-region key and its role in the
1343
+ # multi-region key hierarchy.
1344
+ #
1345
+ # Multi-region keys allow the same key material to be used across
1346
+ # multiple Amazon Web Services Regions. This field specifies whether
1347
+ # the key is a primary key (which can be replicated to other regions)
1348
+ # or a replica key (which is a copy of a primary key in another
1349
+ # region).
1350
+ # @return [String]
1351
+ #
1352
+ # @!attribute [rw] primary_region
1353
+ # An Amazon Web Services Region identifier in the standard format
1354
+ # (e.g., `us-east-1`, `eu-west-1`).
1355
+ #
1356
+ # Used to specify regions for key replication operations. The region
1357
+ # must be a valid Amazon Web Services Region where Amazon Web Services
1358
+ # Payment Cryptography is available.
1359
+ # @return [String]
1360
+ #
1361
+ # @!attribute [rw] replication_status
1362
+ # Information about the replication status of the key across different
1363
+ # regions.
1364
+ #
1365
+ # This field provides details about the current state of key
1366
+ # replication, including any status messages or operational
1367
+ # information. It helps track the progress and health of key
1368
+ # replication operations.
1369
+ # @return [Hash<String,Types::ReplicationStatusType>]
1370
+ #
1371
+ # @!attribute [rw] using_default_replication_regions
1372
+ # Indicates whether this key is using the account's default
1373
+ # replication regions configuration.
1374
+ #
1375
+ # When set to `true`, the key automatically replicates to the regions
1376
+ # specified in the account's default replication settings. When set
1377
+ # to `false`, the key has a custom replication configuration that
1378
+ # overrides the account defaults.
1379
+ # @return [Boolean]
1380
+ #
1155
1381
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/Key AWS API Documentation
1156
1382
  #
1157
1383
  class Key < Struct.new(
@@ -1168,7 +1394,11 @@ module Aws::PaymentCryptography
1168
1394
  :usage_stop_timestamp,
1169
1395
  :delete_pending_timestamp,
1170
1396
  :delete_timestamp,
1171
- :derive_key_usage)
1397
+ :derive_key_usage,
1398
+ :multi_region_key_type,
1399
+ :primary_region,
1400
+ :replication_status,
1401
+ :using_default_replication_regions)
1172
1402
  SENSITIVE = []
1173
1403
  include Aws::Structure
1174
1404
  end
@@ -1371,6 +1601,19 @@ module Aws::PaymentCryptography
1371
1601
  # Specifies whether the key is enabled.
1372
1602
  # @return [Boolean]
1373
1603
  #
1604
+ # @!attribute [rw] multi_region_key_type
1605
+ # Defines the replication type of a key
1606
+ # @return [String]
1607
+ #
1608
+ # @!attribute [rw] primary_region
1609
+ # An Amazon Web Services Region identifier in the standard format
1610
+ # (e.g., `us-east-1`, `eu-west-1`).
1611
+ #
1612
+ # Used to specify regions for key replication operations. The region
1613
+ # must be a valid Amazon Web Services Region where Amazon Web Services
1614
+ # Payment Cryptography is available.
1615
+ # @return [String]
1616
+ #
1374
1617
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/KeySummary AWS API Documentation
1375
1618
  #
1376
1619
  class KeySummary < Struct.new(
@@ -1379,7 +1622,9 @@ module Aws::PaymentCryptography
1379
1622
  :key_attributes,
1380
1623
  :key_check_value,
1381
1624
  :exportable,
1382
- :enabled)
1625
+ :enabled,
1626
+ :multi_region_key_type,
1627
+ :primary_region)
1383
1628
  SENSITIVE = []
1384
1629
  include Aws::Structure
1385
1630
  end
@@ -1534,10 +1779,92 @@ module Aws::PaymentCryptography
1534
1779
  include Aws::Structure
1535
1780
  end
1536
1781
 
1537
- # The request was denied due to an invalid resource error.
1782
+ # Input parameters for removing replication regions from a specific key.
1783
+ #
1784
+ # @!attribute [rw] key_identifier
1785
+ # The key identifier (ARN or alias) of the key from which to remove
1786
+ # replication regions.
1787
+ #
1788
+ # This key must exist and have replication enabled in the specified
1789
+ # regions.
1790
+ # @return [String]
1791
+ #
1792
+ # @!attribute [rw] replication_regions
1793
+ # The list of Amazon Web Services Regions to remove from the key's
1794
+ # replication configuration.
1795
+ #
1796
+ # The key will no longer be available for cryptographic operations in
1797
+ # these regions after removal. Ensure no active operations depend on
1798
+ # the key in these regions before removal.
1799
+ # @return [Array<String>]
1800
+ #
1801
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/RemoveKeyReplicationRegionsInput AWS API Documentation
1802
+ #
1803
+ class RemoveKeyReplicationRegionsInput < Struct.new(
1804
+ :key_identifier,
1805
+ :replication_regions)
1806
+ SENSITIVE = []
1807
+ include Aws::Structure
1808
+ end
1809
+
1810
+ # Output from removing replication regions from a key.
1811
+ #
1812
+ # @!attribute [rw] key
1813
+ # The updated key metadata after removing the replication regions.
1814
+ #
1815
+ # This reflects the current state of the key and its updated
1816
+ # replication configuration.
1817
+ # @return [Types::Key]
1818
+ #
1819
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/RemoveKeyReplicationRegionsOutput AWS API Documentation
1820
+ #
1821
+ class RemoveKeyReplicationRegionsOutput < Struct.new(
1822
+ :key)
1823
+ SENSITIVE = []
1824
+ include Aws::Structure
1825
+ end
1826
+
1827
+ # Represents the replication status information for a key in a
1828
+ # replication region.
1829
+ #
1830
+ # This structure contains details about the current state of key
1831
+ # replication, including any status messages and operational information
1832
+ # about the replication process.
1833
+ #
1834
+ # @!attribute [rw] status
1835
+ # Defines the replication state of a key
1836
+ # @return [String]
1837
+ #
1838
+ # @!attribute [rw] status_message
1839
+ # A message that provides additional information about the current
1840
+ # replication status of the key.
1841
+ #
1842
+ # This field contains details about any issues or progress updates
1843
+ # related to key replication operations. It may include information
1844
+ # about replication failures, synchronization status, or other
1845
+ # operational details.
1846
+ # @return [String]
1847
+ #
1848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/ReplicationStatusType AWS API Documentation
1849
+ #
1850
+ class ReplicationStatusType < Struct.new(
1851
+ :status,
1852
+ :status_message)
1853
+ SENSITIVE = []
1854
+ include Aws::Structure
1855
+ end
1856
+
1857
+ # The request was denied due to resource not found.
1858
+ #
1859
+ # The specified key, alias, or other resource does not exist in your
1860
+ # account or region. Verify that the resource identifier is correct and
1861
+ # that the resource exists in the expected region.
1538
1862
  #
1539
1863
  # @!attribute [rw] resource_id
1540
- # The string for the exception.
1864
+ # The identifier of the resource that was not found.
1865
+ #
1866
+ # This field contains the specific resource identifier (such as a key
1867
+ # ARN or alias name) that could not be located.
1541
1868
  # @return [String]
1542
1869
  #
1543
1870
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/ResourceNotFoundException AWS API Documentation
@@ -1592,12 +1919,16 @@ module Aws::PaymentCryptography
1592
1919
  class RootCertificatePublicKey < Struct.new(
1593
1920
  :key_attributes,
1594
1921
  :public_key_certificate)
1595
- SENSITIVE = [:public_key_certificate]
1922
+ SENSITIVE = []
1596
1923
  include Aws::Structure
1597
1924
  end
1598
1925
 
1599
1926
  # This request would cause a service quota to be exceeded.
1600
1927
  #
1928
+ # You have reached the maximum number of keys, aliases, or other
1929
+ # resources allowed in your account. Review your current usage and
1930
+ # consider deleting unused resources or requesting a quota increase.
1931
+ #
1601
1932
  # @!attribute [rw] message
1602
1933
  # @return [String]
1603
1934
  #
@@ -1611,6 +1942,10 @@ module Aws::PaymentCryptography
1611
1942
 
1612
1943
  # The service cannot complete the request.
1613
1944
  #
1945
+ # The Amazon Web Services Payment Cryptography service is temporarily
1946
+ # unavailable. This is typically a temporary condition - retry your
1947
+ # request after a brief delay.
1948
+ #
1614
1949
  # @!attribute [rw] message
1615
1950
  # @return [String]
1616
1951
  #
@@ -1733,6 +2068,10 @@ module Aws::PaymentCryptography
1733
2068
 
1734
2069
  # The request was denied due to request throttling.
1735
2070
  #
2071
+ # You have exceeded the rate limits for Amazon Web Services Payment
2072
+ # Cryptography API calls. Implement exponential backoff and retry logic
2073
+ # in your application to handle throttling gracefully.
2074
+ #
1736
2075
  # @!attribute [rw] message
1737
2076
  # @return [String]
1738
2077
  #
@@ -1767,7 +2106,7 @@ module Aws::PaymentCryptography
1767
2106
  :key_attributes,
1768
2107
  :public_key_certificate,
1769
2108
  :certificate_authority_public_key_identifier)
1770
- SENSITIVE = [:public_key_certificate]
2109
+ SENSITIVE = []
1771
2110
  include Aws::Structure
1772
2111
  end
1773
2112
 
@@ -1833,6 +2172,10 @@ module Aws::PaymentCryptography
1833
2172
 
1834
2173
  # The request was denied due to an invalid request error.
1835
2174
  #
2175
+ # One or more parameters in your request are invalid. Check the
2176
+ # parameter values, formats, and constraints specified in the API
2177
+ # documentation.
2178
+ #
1836
2179
  # @!attribute [rw] message
1837
2180
  # @return [String]
1838
2181
  #
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:paymentcryptography)
23
23
  # structure.
24
24
  #
25
25
  # payment_cryptography = Aws::PaymentCryptography::Client.new
26
- # resp = payment_cryptography.create_alias(params)
26
+ # resp = payment_cryptography.add_key_replication_regions(params)
27
27
  #
28
28
  # See {Client} for more information.
29
29
  #
@@ -55,7 +55,7 @@ module Aws::PaymentCryptography
55
55
  autoload :EndpointProvider, 'aws-sdk-paymentcryptography/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-paymentcryptography/endpoints'
57
57
 
58
- GEM_VERSION = '1.40.0'
58
+ GEM_VERSION = '1.42.0'
59
59
 
60
60
  end
61
61