Class: Aws::IoT::Types::CreateKeysAndCertificateResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::CreateKeysAndCertificateResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The output of the CreateKeysAndCertificate operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the certificate.
 - 
  
    
      #certificate_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the certificate.
 - 
  
    
      #certificate_pem  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The certificate data, in PEM format.
 - 
  
    
      #key_pair  ⇒ Types::KeyPair 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The generated key pair.
 
Instance Attribute Details
#certificate_arn ⇒ String
The ARN of the certificate.
      3130 3131 3132 3133 3134 3135 3136 3137  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3130 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end  | 
  
#certificate_id ⇒ String
The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate).
      3130 3131 3132 3133 3134 3135 3136 3137  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3130 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end  | 
  
#certificate_pem ⇒ String
The certificate data, in PEM format.
      3130 3131 3132 3133 3134 3135 3136 3137  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3130 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end  | 
  
#key_pair ⇒ Types::KeyPair
The generated key pair.
      3130 3131 3132 3133 3134 3135 3136 3137  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3130 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end  |