Class: Aws::ACMPCA::Types::ImportCertificateAuthorityCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::ImportCertificateAuthorityCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acmpca/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate ⇒ String
The PEM-encoded certificate for a private CA.
-
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) that was returned when you called [CreateCertificateAuthority].
-
#certificate_chain ⇒ String
A PEM-encoded file that contains all of your certificates, other than the certificate you’re importing, chaining up to your root CA.
Instance Attribute Details
#certificate ⇒ String
The PEM-encoded certificate for a private CA. This may be a self-signed certificate in the case of a root CA, or it may be signed by another CA that you control.
1455 1456 1457 1458 1459 1460 1461 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1455 class ImportCertificateAuthorityCertificateRequest < Struct.new( :certificate_authority_arn, :certificate, :certificate_chain) SENSITIVE = [] include Aws::Structure end |
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) that was returned when you called [CreateCertificateAuthority]. This must be of the 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
1455 1456 1457 1458 1459 1460 1461 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1455 class ImportCertificateAuthorityCertificateRequest < Struct.new( :certificate_authority_arn, :certificate, :certificate_chain) SENSITIVE = [] include Aws::Structure end |
#certificate_chain ⇒ String
A PEM-encoded file that contains all of your certificates, other than the certificate you’re importing, chaining up to your root CA. Your Amazon Web Services Private CA-hosted or on-premises root certificate is the last in the chain, and each certificate in the chain signs the one preceding.
This parameter must be supplied when you import a subordinate CA. When you import a root CA, there is no chain.
1455 1456 1457 1458 1459 1460 1461 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1455 class ImportCertificateAuthorityCertificateRequest < Struct.new( :certificate_authority_arn, :certificate, :certificate_chain) SENSITIVE = [] include Aws::Structure end |