Class: Aws::ACM::Types::RevokeCertificateRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acm/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_arnString

The Amazon Resource Name (ARN) of the public or private certificate that will be revoked. The ARN must have the following form:

‘arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012`

Returns:

  • (String)


1623
1624
1625
1626
1627
1628
# File 'lib/aws-sdk-acm/types.rb', line 1623

class RevokeCertificateRequest < Struct.new(
  :certificate_arn,
  :revocation_reason)
  SENSITIVE = []
  include Aws::Structure
end

#revocation_reasonString

Specifies why you revoked the certificate.

Returns:

  • (String)


1623
1624
1625
1626
1627
1628
# File 'lib/aws-sdk-acm/types.rb', line 1623

class RevokeCertificateRequest < Struct.new(
  :certificate_arn,
  :revocation_reason)
  SENSITIVE = []
  include Aws::Structure
end