Class: Aws::ACMPCA::Types::ApiPassthrough
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::ApiPassthrough
- 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
-
#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 '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 'lib/aws-sdk-acmpca/types.rb', line 210 class ApiPassthrough < Struct.new( :extensions, :subject) SENSITIVE = [] include Aws::Structure end |