Class: Aws::ACMPCA::Types::ApiPassthrough

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb

Overview

Contains X.509 certificate information to be placed in an issued certificate. An APIPassthrough or APICSRPassthrough template variant must be selected, or else this parameter is ignored.

If conflicting or duplicate certificate information is supplied from other sources, Amazon Web Services Private CA applies order of operation rules to determine what information is used.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#extensionsTypes::Extensions

Specifies X.509 extension information for a certificate.

Returns:



210
211
212
213
214
215
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 210

class ApiPassthrough < Struct.new(
  :extensions,
  :subject)
  SENSITIVE = []
  include Aws::Structure
end

#subjectTypes::ASN1Subject

Contains information about the certificate subject. The Subject field in the certificate identifies the entity that owns or controls the public key in the certificate. The entity can be a user, computer, device, or service. The Subjectmust contain an X.500 distinguished name (DN). A DN is a sequence of relative distinguished names (RDNs). The RDNs are separated by commas in the certificate.

Returns:



210
211
212
213
214
215
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 210

class ApiPassthrough < Struct.new(
  :extensions,
  :subject)
  SENSITIVE = []
  include Aws::Structure
end