Class: Aws::IoTAnalytics::Types::LateDataRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::LateDataRule
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Note:
When making an API call, you may pass LateDataRule data as a hash:
{
rule_name: "LateDataRuleName",
rule_configuration: { # required
delta_time_session_window_configuration: {
timeout_in_minutes: 1, # required
},
},
}
A structure that contains the name and configuration information of a late data rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_configuration ⇒ Types::LateDataRuleConfiguration
The information needed to configure the late data rule.
-
#rule_name ⇒ String
The name of the late data rule.
Instance Attribute Details
#rule_configuration ⇒ Types::LateDataRuleConfiguration
The information needed to configure the late data rule.
2679 2680 2681 2682 2683 2684 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2679 class LateDataRule < Struct.new( :rule_name, :rule_configuration) SENSITIVE = [] include Aws::Structure end |
#rule_name ⇒ String
The name of the late data rule.
2679 2680 2681 2682 2683 2684 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2679 class LateDataRule < Struct.new( :rule_name, :rule_configuration) SENSITIVE = [] include Aws::Structure end |