Class: Aws::IoTAnalytics::Types::StartPipelineReprocessingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::StartPipelineReprocessingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_messages ⇒ Types::ChannelMessages
Specifies one or more sets of channel messages that you want to reprocess.
-
#end_time ⇒ Time
The end time (exclusive) of raw message data that is reprocessed.
-
#pipeline_name ⇒ String
The name of the pipeline on which to start reprocessing.
-
#start_time ⇒ Time
The start time (inclusive) of raw message data that is reprocessed.
Instance Attribute Details
#channel_messages ⇒ Types::ChannelMessages
Specifies one or more sets of channel messages that you want to reprocess.
If you use the ‘channelMessages` object, you must not specify a value for `startTime` and `endTime`.
2822 2823 2824 2825 2826 2827 2828 2829 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2822 class StartPipelineReprocessingRequest < Struct.new( :pipeline_name, :start_time, :end_time, :channel_messages) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The end time (exclusive) of raw message data that is reprocessed.
If you specify a value for the ‘endTime` parameter, you must not use the `channelMessages` object.
2822 2823 2824 2825 2826 2827 2828 2829 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2822 class StartPipelineReprocessingRequest < Struct.new( :pipeline_name, :start_time, :end_time, :channel_messages) SENSITIVE = [] include Aws::Structure end |
#pipeline_name ⇒ String
The name of the pipeline on which to start reprocessing.
2822 2823 2824 2825 2826 2827 2828 2829 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2822 class StartPipelineReprocessingRequest < Struct.new( :pipeline_name, :start_time, :end_time, :channel_messages) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time (inclusive) of raw message data that is reprocessed.
If you specify a value for the ‘startTime` parameter, you must not use the `channelMessages` object.
2822 2823 2824 2825 2826 2827 2828 2829 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2822 class StartPipelineReprocessingRequest < Struct.new( :pipeline_name, :start_time, :end_time, :channel_messages) SENSITIVE = [] include Aws::Structure end |