Class: Aws::ACMPCA::Types::RevokeCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::RevokeCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acmpca/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_authority_arn ⇒ String
Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked.
-
#certificate_serial ⇒ String
Serial number of the certificate to be revoked.
-
#revocation_reason ⇒ String
Specifies why you revoked the certificate.
Instance Attribute Details
#certificate_authority_arn ⇒ String
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 `
2408 2409 2410 2411 2412 2413 2414 |
# File 'lib/aws-sdk-acmpca/types.rb', line 2408 class RevokeCertificateRequest < Struct.new( :certificate_authority_arn, :certificate_serial, :revocation_reason) SENSITIVE = [] include Aws::Structure end |
#certificate_serial ⇒ String
Serial number of the certificate to be revoked. This must be in hexadecimal format. You can retrieve the serial number by calling
- GetCertificate][1
-
with the Amazon Resource Name (ARN) of the
certificate you want and the ARN of your private CA. The GetCertificate action retrieves the certificate in the PEM format. You can use the following OpenSSL command to list the certificate in text format and copy the hexadecimal serial number.
‘openssl x509 -in file_path -text -noout`
You can also copy the serial number from the console or use the
- DescribeCertificate][2
-
action in the *Certificate Manager API
Reference*.
[1]: docs.aws.amazon.com/privateca/latest/APIReference/API_GetCertificate.html [2]: docs.aws.amazon.com/acm/latest/APIReference/API_DescribeCertificate.html
2408 2409 2410 2411 2412 2413 2414 |
# File 'lib/aws-sdk-acmpca/types.rb', line 2408 class RevokeCertificateRequest < Struct.new( :certificate_authority_arn, :certificate_serial, :revocation_reason) SENSITIVE = [] include Aws::Structure end |
#revocation_reason ⇒ String
Specifies why you revoked the certificate.
2408 2409 2410 2411 2412 2413 2414 |
# File 'lib/aws-sdk-acmpca/types.rb', line 2408 class RevokeCertificateRequest < Struct.new( :certificate_authority_arn, :certificate_serial, :revocation_reason) SENSITIVE = [] include Aws::Structure end |