Show / Hide Table of Contents

Class CfnDataset.TriggerProperty

The "DatasetTrigger" that specifies when the data set is automatically updated.

Inheritance
System.Object
CfnDataset.TriggerProperty
Implements
CfnDataset.ITriggerProperty
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class TriggerProperty : Object, CfnDataset.ITriggerProperty
Syntax (vb)
Public Class TriggerProperty
    Inherits Object
    Implements CfnDataset.ITriggerProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-trigger.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;

var triggerProperty = new TriggerProperty {
    Schedule = new ScheduleProperty {
        ScheduleExpression = "scheduleExpression"
    },
    TriggeringDataset = new TriggeringDatasetProperty {
        DatasetName = "datasetName"
    }
};

Synopsis

Constructors

TriggerProperty()

Properties

Schedule

The "Schedule" when the trigger is initiated.

TriggeringDataset

Information about the data set whose content generation triggers the new data set content generation.

Constructors

TriggerProperty()

public TriggerProperty()

Properties

Schedule

The "Schedule" when the trigger is initiated.

public object Schedule { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-trigger.html#cfn-iotanalytics-dataset-trigger-schedule

TriggeringDataset

Information about the data set whose content generation triggers the new data set content generation.

public object TriggeringDataset { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-trigger.html#cfn-iotanalytics-dataset-trigger-triggeringdataset

Implements

CfnDataset.ITriggerProperty
Back to top Generated by DocFX