Class: Aws::CloudTrail::Types::PublicKey
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudTrail::Types::PublicKey
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudtrail/types.rb
 
Overview
Contains information about a returned public key.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #fingerprint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fingerprint of the public key.
 - 
  
    
      #validity_end_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ending time of validity of the public key.
 - 
  
    
      #validity_start_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The starting time of validity of the public key.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The DER encoded public key value in PKCS#1 format.
 
Instance Attribute Details
#fingerprint ⇒ String
The fingerprint of the public key.
      3832 3833 3834 3835 3836 3837 3838 3839  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 3832 class PublicKey < Struct.new( :value, :validity_start_time, :validity_end_time, :fingerprint) SENSITIVE = [] include Aws::Structure end  | 
  
#validity_end_time ⇒ Time
The ending time of validity of the public key.
      3832 3833 3834 3835 3836 3837 3838 3839  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 3832 class PublicKey < Struct.new( :value, :validity_start_time, :validity_end_time, :fingerprint) SENSITIVE = [] include Aws::Structure end  | 
  
#validity_start_time ⇒ Time
The starting time of validity of the public key.
      3832 3833 3834 3835 3836 3837 3838 3839  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 3832 class PublicKey < Struct.new( :value, :validity_start_time, :validity_end_time, :fingerprint) SENSITIVE = [] include Aws::Structure end  |