Class: Aws::CloudWatchLogs::Types::ImportFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::ImportFilter
- Defined in:
- gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb
Overview
The filter criteria used for import tasks
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_event_time ⇒ Integer
The end of the time range for events to import, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
-
#start_event_time ⇒ Integer
The start of the time range for events to import, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
Instance Attribute Details
#end_event_time ⇒ Integer
The end of the time range for events to import, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
4452 4453 4454 4455 4456 4457 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4452 class ImportFilter < Struct.new( :start_event_time, :end_event_time) SENSITIVE = [] include Aws::Structure end |
#start_event_time ⇒ Integer
The start of the time range for events to import, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
4452 4453 4454 4455 4456 4457 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4452 class ImportFilter < Struct.new( :start_event_time, :end_event_time) SENSITIVE = [] include Aws::Structure end |