Class: Aws::IoT::Types::CreateCertificateFromCsrResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::CreateCertificateFromCsrResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The output from the CreateCertificateFromCsr operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the certificate.
 - 
  
    
      #certificate_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the certificate.
 - 
  
    
      #certificate_pem  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The certificate data, in PEM format.
 
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
      2374 2375 2376 2377 2378 2379 2380  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 2374 class CreateCertificateFromCsrResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem) SENSITIVE = [] include Aws::Structure end  | 
  
#certificate_id ⇒ String
The ID of the certificate. Certificate management operations only take a certificateId.
      2374 2375 2376 2377 2378 2379 2380  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 2374 class CreateCertificateFromCsrResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem) SENSITIVE = [] include Aws::Structure end  | 
  
#certificate_pem ⇒ String
The certificate data, in PEM format.
      2374 2375 2376 2377 2378 2379 2380  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 2374 class CreateCertificateFromCsrResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem) SENSITIVE = [] include Aws::Structure end  |