Class: Aws::ACMPCA::Types::DeleteCertificateAuthorityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::DeleteCertificateAuthorityRequest
- Includes:
- Structure
- Defined in:
- 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].
-
#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 `.
[1]: docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html
953 954 955 956 957 958 |
# File 'lib/aws-sdk-acmpca/types.rb', line 953 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.
953 954 955 956 957 958 |
# File 'lib/aws-sdk-acmpca/types.rb', line 953 class DeleteCertificateAuthorityRequest < Struct.new( :certificate_authority_arn, :permanent_deletion_time_in_days) SENSITIVE = [] include Aws::Structure end |