Class: Aws::IoTAnalytics::Types::DatasetTrigger
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::DatasetTrigger
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Note:
When making an API call, you may pass DatasetTrigger data as a hash:
{
schedule: {
expression: "ScheduleExpression",
},
dataset: {
name: "DatasetName", # required
},
}
The DatasetTrigger
that specifies when the dataset is automatically
updated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset ⇒ Types::TriggeringDataset
The dataset whose content creation triggers the creation of this dataset's contents.
-
#schedule ⇒ Types::Schedule
The Schedule when the trigger is initiated.
Instance Attribute Details
#dataset ⇒ Types::TriggeringDataset
The dataset whose content creation triggers the creation of this dataset's contents.
1562 1563 1564 1565 1566 1567 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 1562 class DatasetTrigger < Struct.new( :schedule, :dataset) SENSITIVE = [] include Aws::Structure end |
#schedule ⇒ Types::Schedule
The Schedule when the trigger is initiated.
1562 1563 1564 1565 1566 1567 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 1562 class DatasetTrigger < Struct.new( :schedule, :dataset) SENSITIVE = [] include Aws::Structure end |