Class: Aws::ACMPCA::Types::CsrExtensions
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ACMPCA::Types::CsrExtensions
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-acmpca/types.rb
 
Overview
Describes the certificate extensions to be added to the certificate signing request (CSR).
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key_usage  ⇒ Types::KeyUsage 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the purpose of the certificate and of the key contained in the certificate.
 - 
  
    
      #subject_information_access  ⇒ Array<Types::AccessDescription> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
For CA certificates, provides a path to additional information pertaining to the CA, such as revocation and policy.
 
Instance Attribute Details
#key_usage ⇒ Types::KeyUsage
Indicates the purpose of the certificate and of the key contained in the certificate.
      870 871 872 873 874 875  | 
    
      # File 'lib/aws-sdk-acmpca/types.rb', line 870 class CsrExtensions < Struct.new( :key_usage, :subject_information_access) SENSITIVE = [] include Aws::Structure end  | 
  
#subject_information_access ⇒ Array<Types::AccessDescription>
For CA certificates, provides a path to additional information pertaining to the CA, such as revocation and policy. For more information, see [Subject Information Access] in RFC 5280.
      870 871 872 873 874 875  | 
    
      # File 'lib/aws-sdk-acmpca/types.rb', line 870 class CsrExtensions < Struct.new( :key_usage, :subject_information_access) SENSITIVE = [] include Aws::Structure end  |