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
Note:
When making an API call, you may pass DeleteCertificateAuthorityRequest data as a hash:
{
certificate_authority_arn: "Arn", # required
permanent_deletion_time_in_days: 1,
}
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
.
1349 1350 1351 1352 1353 1354 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1349 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.
1349 1350 1351 1352 1353 1354 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1349 class DeleteCertificateAuthorityRequest < Struct.new( :certificate_authority_arn, :permanent_deletion_time_in_days) SENSITIVE = [] include Aws::Structure end |