Class: Aws::ACMPCA::Types::CertificateAuthorityConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-acmpca/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 action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#csr_extensionsTypes::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 'gems/aws-sdk-acmpca/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_algorithmString

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.

Returns:

  • (String)


382
383
384
385
386
387
388
389
# File 'gems/aws-sdk-acmpca/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_algorithmString

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.

Returns:

  • (String)


382
383
384
385
386
387
388
389
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 382

class CertificateAuthorityConfiguration < Struct.new(
  :key_algorithm,
  :signing_algorithm,
  :subject,
  :csr_extensions)
  SENSITIVE = []
  include Aws::Structure
end

#subjectTypes::ASN1Subject

Structure that contains X.500 distinguished name information for your private CA.

Returns:



382
383
384
385
386
387
388
389
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 382

class CertificateAuthorityConfiguration < Struct.new(
  :key_algorithm,
  :signing_algorithm,
  :subject,
  :csr_extensions)
  SENSITIVE = []
  include Aws::Structure
end