Class: Aws::ACMPCA::Types::DeleteCertificateAuthorityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::DeleteCertificateAuthorityRequest
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) that was returned when you called [CreateCertificateAuthority][1].
-
#permanent_deletion_time_in_days ⇒ Integer
The number of days to make a CA restorable after it has been deleted.
Instance Attribute Details
#certificate_authority_arn ⇒ String
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
.
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_days ⇒ Integer
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.
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 |