Class: Aws::ACMPCA::Types::CertificateAuthorityConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::CertificateAuthorityConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acmpca/types.rb
Overview
Contains configuration information for your private certificate authority (CA). This includes information about the class of public key algorithm and the key pair that your private CA creates when it issues a certificate. It also includes the signature algorithm that it uses when issuing certificates, and its X.500 distinguished name. You must specify this information when you call the
- CreateCertificateAuthority][1
-
action.
[1]: docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#csr_extensions ⇒ Types::CsrExtensions
Specifies information to be added to the extension section of the certificate signing request (CSR).
-
#key_algorithm ⇒ String
Type of the public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate.
-
#signing_algorithm ⇒ String
Name of the algorithm your private CA uses to sign certificate requests.
-
#subject ⇒ Types::ASN1Subject
Structure that contains X.500 distinguished name information for your private CA.
Instance Attribute Details
#csr_extensions ⇒ Types::CsrExtensions
Specifies information to be added to the extension section of the certificate signing request (CSR).
382 383 384 385 386 387 388 389 |
# File 'lib/aws-sdk-acmpca/types.rb', line 382 class CertificateAuthorityConfiguration < Struct.new( :key_algorithm, :signing_algorithm, :subject, :csr_extensions) SENSITIVE = [] include Aws::Structure end |
#key_algorithm ⇒ String
Type of the public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate. When you create a subordinate CA, you must use a key algorithm supported by the parent CA.
382 383 384 385 386 387 388 389 |
# File 'lib/aws-sdk-acmpca/types.rb', line 382 class CertificateAuthorityConfiguration < Struct.new( :key_algorithm, :signing_algorithm, :subject, :csr_extensions) SENSITIVE = [] include Aws::Structure end |
#signing_algorithm ⇒ String
Name of the algorithm your private CA uses to sign certificate requests.
This parameter should not be confused with the ‘SigningAlgorithm` parameter used to sign certificates when they are issued.
382 383 384 385 386 387 388 389 |
# File 'lib/aws-sdk-acmpca/types.rb', line 382 class CertificateAuthorityConfiguration < Struct.new( :key_algorithm, :signing_algorithm, :subject, :csr_extensions) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ Types::ASN1Subject
Structure that contains X.500 distinguished name information for your private CA.
382 383 384 385 386 387 388 389 |
# File 'lib/aws-sdk-acmpca/types.rb', line 382 class CertificateAuthorityConfiguration < Struct.new( :key_algorithm, :signing_algorithm, :subject, :csr_extensions) SENSITIVE = [] include Aws::Structure end |