You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ACMPCA::Types::UpdateCertificateAuthorityRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateCertificateAuthorityRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  certificate_authority_arn: "Arn", # required
  revocation_configuration: {
    crl_configuration: {
      enabled: false, # required
      expiration_in_days: 1,
      custom_cname: "String253",
      s3_bucket_name: "String3To255",
    },
  },
  status: "CREATING", # accepts CREATING, PENDING_CERTIFICATE, ACTIVE, DELETED, DISABLED, EXPIRED, FAILED
}

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_authority_arnString

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

Returns:

  • (String)

    Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked.

#revocation_configurationTypes::RevocationConfiguration

Revocation information for your private CA.

Returns:

#statusString

Status of your private CA.

Possible values:

  • CREATING
  • PENDING_CERTIFICATE
  • ACTIVE
  • DELETED
  • DISABLED
  • EXPIRED
  • FAILED

Returns:

  • (String)

    Status of your private CA.