Class: Aws::ACMPCA::Types::DeleteCertificateAuthorityRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_authority_arnString

The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must have the following form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 .

Returns:

  • (String)


957
958
959
960
961
962
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 957

class DeleteCertificateAuthorityRequest < Struct.new(
  :certificate_authority_arn,
  :permanent_deletion_time_in_days)
  SENSITIVE = []
  include Aws::Structure
end

#permanent_deletion_time_in_daysInteger

The number of days to make a CA restorable after it has been deleted. This can be anywhere from 7 to 30 days, with 30 being the default.

Returns:

  • (Integer)


957
958
959
960
961
962
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 957

class DeleteCertificateAuthorityRequest < Struct.new(
  :certificate_authority_arn,
  :permanent_deletion_time_in_days)
  SENSITIVE = []
  include Aws::Structure
end