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.
acmpca_update_certificate_authority(CertificateAuthorityArn,
  RevocationConfiguration, Status)[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:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i> 
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"
)