Class: Aws::IoT::Types::CodeSigningCertificateChain
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::CodeSigningCertificateChain
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Describes the certificate chain being used when code signing a file.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the certificate.
 - 
  
    
      #inline_document  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A base64 encoded binary representation of the code signing certificate chain.
 
Instance Attribute Details
#certificate_name ⇒ String
The name of the certificate.
      2190 2191 2192 2193 2194 2195  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 2190 class CodeSigningCertificateChain < Struct.new( :certificate_name, :inline_document) SENSITIVE = [] include Aws::Structure end  | 
  
#inline_document ⇒ String
A base64 encoded binary representation of the code signing certificate chain.
      2190 2191 2192 2193 2194 2195  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 2190 class CodeSigningCertificateChain < Struct.new( :certificate_name, :inline_document) SENSITIVE = [] include Aws::Structure end  |