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 PCA 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 Configure Access to ACM Private CA.
acmpca_update_certificate_authority(CertificateAuthorityArn,
RevocationConfiguration, Status)
An empty list.
[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
Revocation information for your private CA.
Status of your private CA.
svc$update_certificate_authority(
CertificateAuthorityArn = "string",
RevocationConfiguration = list(
CrlConfiguration = list(
Enabled = TRUE|FALSE,
ExpirationInDays = 123,
CustomCname = "string",
S3BucketName = "string"
)
),
Status = "CREATING"|"PENDING_CERTIFICATE"|"ACTIVE"|"DELETED"|"DISABLED"|"EXPIRED"|"FAILED"
)