aws-sdk-acmpca 1.96.0 → 1.98.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acmpca/client.rb +32 -25
- data/lib/aws-sdk-acmpca/client_api.rb +16 -16
- data/lib/aws-sdk-acmpca/types.rb +26 -19
- data/lib/aws-sdk-acmpca.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4502038d46be05eb09d5216c479ee2b1d6d61df2410a5845e8e627c60552f32e
|
4
|
+
data.tar.gz: 78ec75b229043f5f7fa27a1ea3a7f74fd42ab763a66bddcd4d88b71a5e1593dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a8414f6217952627b2d54fd174de65980db66c066f69a620f75551bfd0b715f34ca39ef142b40c4d45c930a2c8ba9cb7ede7695af22da172ad62c0b88f51dd0
|
7
|
+
data.tar.gz: d1e1893b103b99e1a048f28fe3eb8207ed02a6d96ee9bd5e514404ce228264e0dc2ec707c5a0c15c58a500388f117d92e1d6d8b614e0a4f96a95a3a3d714b6ea
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.98.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.97.0 (2025-08-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc-only update to add more information to GetCertificate action.
|
13
|
+
|
4
14
|
1.96.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.98.0
|
@@ -95,8 +95,8 @@ module Aws::ACMPCA
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::ACMPCA
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::ACMPCA
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::ACMPCA
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -569,22 +566,22 @@ module Aws::ACMPCA
|
|
569
566
|
# requesting multiple certificate authorities.
|
570
567
|
#
|
571
568
|
# @option params [String] :key_storage_security_standard
|
572
|
-
# Specifies a cryptographic key management compliance standard
|
573
|
-
# handling CA keys.
|
569
|
+
# Specifies a cryptographic key management compliance standard for
|
570
|
+
# handling and protecting CA keys.
|
574
571
|
#
|
575
572
|
# Default: FIPS\_140\_2\_LEVEL\_3\_OR\_HIGHER
|
576
573
|
#
|
577
|
-
# <note markdown="1"> Some Amazon Web Services Regions
|
578
|
-
#
|
579
|
-
# `
|
580
|
-
#
|
581
|
-
# `InvalidArgsException` with
|
574
|
+
# <note markdown="1"> Some Amazon Web Services Regions don't support the default value.
|
575
|
+
# When you create a CA in these Regions, you must use
|
576
|
+
# `CCPC_LEVEL_1_OR_HIGHER` for the `KeyStorageSecurityStandard`
|
577
|
+
# parameter. If you don't, the operation returns an
|
578
|
+
# `InvalidArgsException` with this message: "A certificate authority
|
582
579
|
# cannot be created in this region with the specified security
|
583
580
|
# standard."
|
584
581
|
#
|
585
|
-
# For information about security standard support in
|
586
|
-
# see [Storage and security compliance of Amazon
|
587
|
-
# private keys][1].
|
582
|
+
# For information about security standard support in different Amazon
|
583
|
+
# Web Services Regions, see [Storage and security compliance of Amazon
|
584
|
+
# Web Services Private CA private keys][1].
|
588
585
|
#
|
589
586
|
# </note>
|
590
587
|
#
|
@@ -916,6 +913,16 @@ module Aws::ACMPCA
|
|
916
913
|
# state. To restore an eligible CA, call the
|
917
914
|
# [RestoreCertificateAuthority][5] action.
|
918
915
|
#
|
916
|
+
# A private CA can be deleted if it is in the `PENDING_CERTIFICATE`,
|
917
|
+
# `CREATING`, `EXPIRED`, `DISABLED`, or `FAILED` state. To delete a CA
|
918
|
+
# in the `ACTIVE` state, you must first disable it, or else the delete
|
919
|
+
# request results in an exception. If you are deleting a private CA in
|
920
|
+
# the `PENDING_CERTIFICATE` or `DISABLED` state, you can set the length
|
921
|
+
# of its restoration period to 7-30 days. The default is 30. During this
|
922
|
+
# time, the status is set to `DELETED` and the CA can be restored. A
|
923
|
+
# private CA deleted in the `CREATING` or `FAILED` state has no assigned
|
924
|
+
# restoration period and cannot be restored.
|
925
|
+
#
|
919
926
|
#
|
920
927
|
#
|
921
928
|
# [1]: https://docs.aws.amazon.com/privateca/latest/APIReference/API_ListCertificateAuthorities.html
|
@@ -1310,7 +1317,7 @@ module Aws::ACMPCA
|
|
1310
1317
|
# the [IssueCertificate][1] action. You must specify both the ARN of
|
1311
1318
|
# your private CA and the ARN of the issued certificate when calling the
|
1312
1319
|
# **GetCertificate** action. You can retrieve the certificate if it is
|
1313
|
-
# in the **ISSUED** state. You can call the
|
1320
|
+
# in the **ISSUED**, **EXPIRED**, or **REVOKED** state. You can call the
|
1314
1321
|
# [CreateCertificateAuthorityAuditReport][2] action to create a report
|
1315
1322
|
# that contains information about all of the certificates issued and
|
1316
1323
|
# revoked by your private CA.
|
@@ -1498,7 +1505,7 @@ module Aws::ACMPCA
|
|
1498
1505
|
# @option params [required, String] :resource_arn
|
1499
1506
|
# The Amazon Resource Number (ARN) of the private CA that will have its
|
1500
1507
|
# policy retrieved. You can find the CA's ARN by calling the
|
1501
|
-
# ListCertificateAuthorities action.
|
1508
|
+
# ListCertificateAuthorities action.
|
1502
1509
|
#
|
1503
1510
|
# @return [Types::GetPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1504
1511
|
#
|
@@ -2706,7 +2713,7 @@ module Aws::ACMPCA
|
|
2706
2713
|
tracer: tracer
|
2707
2714
|
)
|
2708
2715
|
context[:gem_name] = 'aws-sdk-acmpca'
|
2709
|
-
context[:gem_version] = '1.
|
2716
|
+
context[:gem_version] = '1.98.0'
|
2710
2717
|
Seahorse::Client::Request.new(handlers, context)
|
2711
2718
|
end
|
2712
2719
|
|
@@ -589,10 +589,10 @@ module Aws::ACMPCA
|
|
589
589
|
o.input = Shapes::ShapeRef.new(shape: CreateCertificateAuthorityAuditReportRequest)
|
590
590
|
o.output = Shapes::ShapeRef.new(shape: CreateCertificateAuthorityAuditReportResponse)
|
591
591
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
592
|
-
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
593
592
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgsException)
|
594
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
593
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
595
594
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
595
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
596
596
|
o.errors << Shapes::ShapeRef.new(shape: RequestInProgressException)
|
597
597
|
end)
|
598
598
|
|
@@ -606,8 +606,8 @@ module Aws::ACMPCA
|
|
606
606
|
o.errors << Shapes::ShapeRef.new(shape: PermissionAlreadyExistsException)
|
607
607
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
608
608
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
609
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
610
609
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
610
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
611
611
|
end)
|
612
612
|
|
613
613
|
api.add_operation(:delete_certificate_authority, Seahorse::Model::Operation.new.tap do |o|
|
@@ -630,8 +630,8 @@ module Aws::ACMPCA
|
|
630
630
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
631
631
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
632
632
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
633
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
634
633
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
634
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
635
635
|
end)
|
636
636
|
|
637
637
|
api.add_operation(:delete_policy, Seahorse::Model::Operation.new.tap do |o|
|
@@ -643,8 +643,8 @@ module Aws::ACMPCA
|
|
643
643
|
o.errors << Shapes::ShapeRef.new(shape: LockoutPreventedException)
|
644
644
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
645
645
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
646
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
647
646
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
647
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
648
648
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
649
649
|
end)
|
650
650
|
|
@@ -665,8 +665,8 @@ module Aws::ACMPCA
|
|
665
665
|
o.input = Shapes::ShapeRef.new(shape: DescribeCertificateAuthorityAuditReportRequest)
|
666
666
|
o.output = Shapes::ShapeRef.new(shape: DescribeCertificateAuthorityAuditReportResponse)
|
667
667
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
668
|
-
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
669
668
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgsException)
|
669
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
670
670
|
end)
|
671
671
|
|
672
672
|
api.add_operation(:get_certificate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -677,8 +677,8 @@ module Aws::ACMPCA
|
|
677
677
|
o.output = Shapes::ShapeRef.new(shape: GetCertificateResponse)
|
678
678
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
679
679
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
680
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
681
680
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
681
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
682
682
|
o.errors << Shapes::ShapeRef.new(shape: RequestInProgressException)
|
683
683
|
end)
|
684
684
|
|
@@ -701,8 +701,8 @@ module Aws::ACMPCA
|
|
701
701
|
o.output = Shapes::ShapeRef.new(shape: GetCertificateAuthorityCsrResponse)
|
702
702
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
703
703
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
704
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
705
704
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
705
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
706
706
|
o.errors << Shapes::ShapeRef.new(shape: RequestInProgressException)
|
707
707
|
end)
|
708
708
|
|
@@ -714,8 +714,8 @@ module Aws::ACMPCA
|
|
714
714
|
o.output = Shapes::ShapeRef.new(shape: GetPolicyResponse)
|
715
715
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
716
716
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
717
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
718
717
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
718
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
719
719
|
end)
|
720
720
|
|
721
721
|
api.add_operation(:import_certificate_authority_certificate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -729,8 +729,8 @@ module Aws::ACMPCA
|
|
729
729
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
730
730
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
731
731
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
732
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
733
732
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
733
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
734
734
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
735
735
|
o.errors << Shapes::ShapeRef.new(shape: RequestInProgressException)
|
736
736
|
end)
|
@@ -743,8 +743,8 @@ module Aws::ACMPCA
|
|
743
743
|
o.output = Shapes::ShapeRef.new(shape: IssueCertificateResponse)
|
744
744
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
745
745
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
746
|
-
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
747
746
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgsException)
|
747
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
748
748
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
749
749
|
o.errors << Shapes::ShapeRef.new(shape: MalformedCSRException)
|
750
750
|
end)
|
@@ -772,8 +772,8 @@ module Aws::ACMPCA
|
|
772
772
|
o.output = Shapes::ShapeRef.new(shape: ListPermissionsResponse)
|
773
773
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
774
774
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
775
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
776
775
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
776
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
777
777
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
778
778
|
o[:pager] = Aws::Pager.new(
|
779
779
|
limit_key: "max_results",
|
@@ -791,8 +791,8 @@ module Aws::ACMPCA
|
|
791
791
|
o.output = Shapes::ShapeRef.new(shape: ListTagsResponse)
|
792
792
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
793
793
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
794
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
795
794
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
795
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
796
796
|
o[:pager] = Aws::Pager.new(
|
797
797
|
limit_key: "max_results",
|
798
798
|
tokens: {
|
@@ -810,8 +810,8 @@ module Aws::ACMPCA
|
|
810
810
|
o.errors << Shapes::ShapeRef.new(shape: LockoutPreventedException)
|
811
811
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
812
812
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
813
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
814
813
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
814
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
815
815
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
816
816
|
o.errors << Shapes::ShapeRef.new(shape: InvalidPolicyException)
|
817
817
|
end)
|
@@ -838,8 +838,8 @@ module Aws::ACMPCA
|
|
838
838
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
839
839
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
840
840
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
841
|
-
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
842
841
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
842
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
843
843
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
844
844
|
o.errors << Shapes::ShapeRef.new(shape: RequestInProgressException)
|
845
845
|
end)
|
@@ -876,8 +876,8 @@ module Aws::ACMPCA
|
|
876
876
|
o.input = Shapes::ShapeRef.new(shape: UpdateCertificateAuthorityRequest)
|
877
877
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
878
878
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
879
|
-
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
880
879
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgsException)
|
880
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
881
881
|
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
882
882
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
883
883
|
o.errors << Shapes::ShapeRef.new(shape: InvalidPolicyException)
|
data/lib/aws-sdk-acmpca/types.rb
CHANGED
@@ -296,17 +296,24 @@ module Aws::ACMPCA
|
|
296
296
|
# @return [Time]
|
297
297
|
#
|
298
298
|
# @!attribute [rw] key_storage_security_standard
|
299
|
-
# Defines a cryptographic key management compliance standard
|
300
|
-
# handling CA keys.
|
299
|
+
# Defines a cryptographic key management compliance standard for
|
300
|
+
# handling and protecting CA keys.
|
301
301
|
#
|
302
302
|
# Default: FIPS\_140\_2\_LEVEL\_3\_OR\_HIGHER
|
303
303
|
#
|
304
|
-
#
|
305
|
-
#
|
306
|
-
#
|
307
|
-
#
|
308
|
-
#
|
309
|
-
#
|
304
|
+
# <note markdown="1"> Starting January 26, 2023, Amazon Web Services Private CA protects
|
305
|
+
# all CA private keys in non-China regions using hardware security
|
306
|
+
# modules (HSMs) that comply with FIPS PUB 140-2 Level 3.
|
307
|
+
#
|
308
|
+
# For information about security standard support in different Amazon
|
309
|
+
# Web Services Regions, see [Storage and security compliance of Amazon
|
310
|
+
# Web Services Private CA private keys][1].
|
311
|
+
#
|
312
|
+
# </note>
|
313
|
+
#
|
314
|
+
#
|
315
|
+
#
|
316
|
+
# [1]: https://docs.aws.amazon.com/privateca/latest/userguide/data-protection.html#private-keys
|
310
317
|
# @return [String]
|
311
318
|
#
|
312
319
|
# @!attribute [rw] usage_mode
|
@@ -516,22 +523,22 @@ module Aws::ACMPCA
|
|
516
523
|
# @return [String]
|
517
524
|
#
|
518
525
|
# @!attribute [rw] key_storage_security_standard
|
519
|
-
# Specifies a cryptographic key management compliance standard
|
520
|
-
#
|
526
|
+
# Specifies a cryptographic key management compliance standard for
|
527
|
+
# handling and protecting CA keys.
|
521
528
|
#
|
522
529
|
# Default: FIPS\_140\_2\_LEVEL\_3\_OR\_HIGHER
|
523
530
|
#
|
524
|
-
# <note markdown="1"> Some Amazon Web Services Regions
|
525
|
-
#
|
526
|
-
# `
|
527
|
-
#
|
528
|
-
# `InvalidArgsException` with
|
531
|
+
# <note markdown="1"> Some Amazon Web Services Regions don't support the default value.
|
532
|
+
# When you create a CA in these Regions, you must use
|
533
|
+
# `CCPC_LEVEL_1_OR_HIGHER` for the `KeyStorageSecurityStandard`
|
534
|
+
# parameter. If you don't, the operation returns an
|
535
|
+
# `InvalidArgsException` with this message: "A certificate authority
|
529
536
|
# cannot be created in this region with the specified security
|
530
537
|
# standard."
|
531
538
|
#
|
532
|
-
# For information about security standard support in
|
533
|
-
# see [Storage and security compliance of Amazon
|
534
|
-
# CA private keys][1].
|
539
|
+
# For information about security standard support in different Amazon
|
540
|
+
# Web Services Regions, see [Storage and security compliance of Amazon
|
541
|
+
# Web Services Private CA private keys][1].
|
535
542
|
#
|
536
543
|
# </note>
|
537
544
|
#
|
@@ -1434,7 +1441,7 @@ module Aws::ACMPCA
|
|
1434
1441
|
# @!attribute [rw] resource_arn
|
1435
1442
|
# The Amazon Resource Number (ARN) of the private CA that will have
|
1436
1443
|
# its policy retrieved. You can find the CA's ARN by calling the
|
1437
|
-
# ListCertificateAuthorities action.
|
1444
|
+
# ListCertificateAuthorities action.
|
1438
1445
|
# @return [String]
|
1439
1446
|
#
|
1440
1447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-pca-2017-08-22/GetPolicyRequest AWS API Documentation
|
data/lib/aws-sdk-acmpca.rb
CHANGED