Show / Hide Table of Contents

Class CfnAlarmModel.IotEventsProperty

Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.

Inheritance
object
CfnAlarmModel.IotEventsProperty
Implements
CfnAlarmModel.IIotEventsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTEvents
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAlarmModel.IotEventsProperty : CfnAlarmModel.IIotEventsProperty
Syntax (vb)
Public Class CfnAlarmModel.IotEventsProperty Implements CfnAlarmModel.IIotEventsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-alarmmodel-iotevents.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.IoTEvents;

             var iotEventsProperty = new IotEventsProperty {
                 InputName = "inputName",

                 // the properties below are optional
                 Payload = new PayloadProperty {
                     ContentExpression = "contentExpression",
                     Type = "type"
                 }
             };

Synopsis

Constructors

IotEventsProperty()

Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.

Properties

InputName

The name of the AWS IoT Events input where the data is sent.

Payload

You can configure the action payload when you send a message to an AWS IoT Events input.

Constructors

IotEventsProperty()

Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.

public IotEventsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-alarmmodel-iotevents.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.IoTEvents;

             var iotEventsProperty = new IotEventsProperty {
                 InputName = "inputName",

                 // the properties below are optional
                 Payload = new PayloadProperty {
                     ContentExpression = "contentExpression",
                     Type = "type"
                 }
             };

Properties

InputName

The name of the AWS IoT Events input where the data is sent.

public string InputName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-alarmmodel-iotevents.html#cfn-iotevents-alarmmodel-iotevents-inputname

Payload

You can configure the action payload when you send a message to an AWS IoT Events input.

public object? Payload { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-alarmmodel-iotevents.html#cfn-iotevents-alarmmodel-iotevents-payload

Type union: either IResolvable or CfnAlarmModel.IPayloadProperty

Implements

CfnAlarmModel.IIotEventsProperty
Back to top Generated by DocFX