Class: Aws::ACMPCA::Types::ApiPassthrough
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::ApiPassthrough
- 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
-
#extensions ⇒ Types::Extensions
Specifies X.509 extension information for a certificate.
-
#subject ⇒ Types::ASN1Subject
Contains information about the certificate subject.
Instance Attribute Details
#extensions ⇒ Types::Extensions
Specifies X.509 extension information for a certificate.
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 |
#subject ⇒ Types::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.
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 |