Class: Aws::IoTTwinMaker::Types::InterpolationParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::InterpolationParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iottwinmaker/types.rb
Overview
Note:
When making an API call, you may pass InterpolationParameters data as a hash:
{
interpolation_type: "LINEAR", # accepts LINEAR
interval_in_seconds: 1,
}
An object that specifies how to interpolate data in a list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#interpolation_type ⇒ String
The interpolation type.
-
#interval_in_seconds ⇒ Integer
The interpolation time interval in seconds.
Instance Attribute Details
#interpolation_type ⇒ String
The interpolation type.
2041 2042 2043 2044 2045 2046 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2041 class InterpolationParameters < Struct.new( :interpolation_type, :interval_in_seconds) SENSITIVE = [] include Aws::Structure end |
#interval_in_seconds ⇒ Integer
The interpolation time interval in seconds.
2041 2042 2043 2044 2045 2046 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2041 class InterpolationParameters < Struct.new( :interpolation_type, :interval_in_seconds) SENSITIVE = [] include Aws::Structure end |