Class: Aws::CloudTrail::Types::ListPublicKeysRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::ListPublicKeysRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Requests the public keys for a specified time range.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
Optionally specifies, in UTC, the end of the time range to look up public keys for CloudTrail digest files.
-
#next_token ⇒ String
Reserved for future use.
-
#start_time ⇒ Time
Optionally specifies, in UTC, the start of the time range to look up public keys for CloudTrail digest files.
Instance Attribute Details
#end_time ⇒ Time
Optionally specifies, in UTC, the end of the time range to look up public keys for CloudTrail digest files. If not specified, the current time is used.
3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3758 class ListPublicKeysRequest < Struct.new( :start_time, :end_time, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Reserved for future use.
3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3758 class ListPublicKeysRequest < Struct.new( :start_time, :end_time, :next_token) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
Optionally specifies, in UTC, the start of the time range to look up public keys for CloudTrail digest files. If not specified, the current time is used, and the current public key is returned.
3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3758 class ListPublicKeysRequest < Struct.new( :start_time, :end_time, :next_token) SENSITIVE = [] include Aws::Structure end |