Class: Aws::LookoutEquipment::Types::DataPreProcessingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::DataPreProcessingConfiguration
- Defined in:
- gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb
Overview
The configuration is the TargetSamplingRate
, which is the sampling
rate of the data after post processing by Amazon Lookout for
Equipment. For example, if you provide data that has been collected at
a 1 second level and you want the system to resample the data at a 1
minute rate before training, the TargetSamplingRate
is 1 minute.
When providing a value for the TargetSamplingRate
, you must attach
the prefix "PT" to the rate you want. The value for a 1 second rate
is therefore PT1S, the value for a 15 minute rate is PT15M, and
the value for a 1 hour rate is PT1H
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_sampling_rate ⇒ String
The sampling rate of the data after post processing by Amazon Lookout for Equipment.
Instance Attribute Details
#target_sampling_rate ⇒ String
The sampling rate of the data after post processing by Amazon
Lookout for Equipment. For example, if you provide data that has
been collected at a 1 second level and you want the system to
resample the data at a 1 minute rate before training, the
TargetSamplingRate
is 1 minute.
When providing a value for the TargetSamplingRate
, you must attach
the prefix "PT" to the rate you want. The value for a 1 second
rate is therefore PT1S, the value for a 15 minute rate is PT15M,
and the value for a 1 hour rate is PT1H
690 691 692 693 694 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 690 class DataPreProcessingConfiguration < Struct.new( :target_sampling_rate) SENSITIVE = [] include Aws::Structure end |