Class: Aws::MemoryDB::Types::DescribeEventsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::DescribeEventsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration ⇒ Integer
The number of minutes worth of events to retrieve.
-
#end_time ⇒ Time
The end of the time interval for which to retrieve events, specified in ISO 8601 format.
-
#max_results ⇒ Integer
The maximum number of records to include in the response.
-
#next_token ⇒ String
An optional argument to pass in case the total number of records exceeds the value of MaxResults.
-
#source_name ⇒ String
The identifier of the event source for which events are returned.
-
#source_type ⇒ String
The event source to retrieve events for.
-
#start_time ⇒ Time
The beginning of the time interval to retrieve events for, specified in ISO 8601 format.
Instance Attribute Details
#duration ⇒ Integer
The number of minutes worth of events to retrieve.
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The end of the time interval for which to retrieve events, specified in ISO 8601 format. Example: 2017-03-30T07:03:49.555Z
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#source_name ⇒ String
The identifier of the event source for which events are returned. If not specified, all sources are included in the response.
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#source_type ⇒ String
The event source to retrieve events for. If no value is specified, all events are returned.
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The beginning of the time interval to retrieve events for, specified in ISO 8601 format. Example: 2017-03-30T07:03:49.555Z
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/aws-sdk-memorydb/types.rb', line 1306 class DescribeEventsRequest < Struct.new( :source_name, :source_type, :start_time, :end_time, :duration, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |