Class: Aws::ACMPCA::Types::GetCertificateAuthorityCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::GetCertificateAuthorityCertificateRequest
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Note:
When making an API call, you may pass GetCertificateAuthorityCertificateRequest data as a hash:
{
certificate_authority_arn: "Arn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) of your private CA.
Instance Attribute Details
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) of your private CA. This is of the form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
1870 1871 1872 1873 1874 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1870 class GetCertificateAuthorityCertificateRequest < Struct.new( :certificate_authority_arn) SENSITIVE = [] include Aws::Structure end |