Update Certificate Authority
acmpca_update_certificate_authority | R Documentation |
Updates the status or configuration of a private certificate authority (CA)¶
Description¶
Updates the status or configuration of a private certificate authority
(CA). Your private CA must be in the ACTIVE
or DISABLED
state before
you can update it. You can disable a private CA that is in the ACTIVE
state or make a CA that is in the DISABLED
state active again.
Both Amazon Web Services Private CA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.
Usage¶
Arguments¶
CertificateAuthorityArn
[required] Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked. This must be of the form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
RevocationConfiguration
Contains information to enable Online Certificate Status Protocol (OCSP) support, to enable a certificate revocation list (CRL), to enable both, or to enable neither. If this parameter is not supplied, existing capibilites remain unchanged. For more information, see the OcspConfiguration and CrlConfiguration types.
The following requirements apply to revocation configurations.
A configuration disabling CRLs or OCSP must contain only the
Enabled=False
parameter, and will fail if other parameters such asCustomCname
orExpirationInDays
are included.In a CRL configuration, the
S3BucketName
parameter must conform to Amazon S3 bucket naming rules.A configuration containing a custom Canonical Name (CNAME) parameter for CRLs or OCSP must conform to RFC2396 restrictions on the use of special characters in a CNAME.
In a CRL or OCSP configuration, the value of a CNAME parameter must not include a protocol prefix such as "http://" or "https://".
Status
Status of your private CA.
Value¶
An empty list.
Request syntax¶
svc$update_certificate_authority(
CertificateAuthorityArn = "string",
RevocationConfiguration = list(
CrlConfiguration = list(
Enabled = TRUE|FALSE,
ExpirationInDays = 123,
CustomCname = "string",
S3BucketName = "string",
S3ObjectAcl = "PUBLIC_READ"|"BUCKET_OWNER_FULL_CONTROL",
CrlDistributionPointExtensionConfiguration = list(
OmitExtension = TRUE|FALSE
)
),
OcspConfiguration = list(
Enabled = TRUE|FALSE,
OcspCustomCname = "string"
)
),
Status = "CREATING"|"PENDING_CERTIFICATE"|"ACTIVE"|"DELETED"|"DISABLED"|"EXPIRED"|"FAILED"
)