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.
3794 3795 3796 3797 3798 3799 3800 3801 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3794 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.
3794 3795 3796 3797 3798 3799 3800 3801 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3794 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.
3794 3795 3796 3797 3798 3799 3800 3801 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3794 class PublicKey < Struct.new( :value, :validity_start_time, :validity_end_time, :fingerprint) SENSITIVE = [] include Aws::Structure end |