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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

[1]: docs.aws.amazon.com/privateca/latest/userguide/UsingTemplates.html#template-order-of-operations

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 '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 `Subject `must 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 'lib/aws-sdk-acmpca/types.rb', line 210

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