Interface CfnAlarmModel.FirehoseProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlarmModel.FirehoseProperty.Jsii$Proxy
- Enclosing class:
CfnAlarmModel
@Stability(Stable)
public static interface CfnAlarmModel.FirehoseProperty
extends software.amazon.jsii.JsiiSerializable
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iotevents.*; FirehoseProperty firehoseProperty = FirehoseProperty.builder() .deliveryStreamName("deliveryStreamName") // the properties below are optional .payload(PayloadProperty.builder() .contentExpression("contentExpression") .type("type") .build()) .separator("separator") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAlarmModel.FirehoseProperty
static final class
An implementation forCfnAlarmModel.FirehoseProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the Kinesis Data Firehose delivery stream where the data is written.default Object
You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.default String
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeliveryStreamName
The name of the Kinesis Data Firehose delivery stream where the data is written.- See Also:
-
getPayload
You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.- See Also:
-
getSeparator
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream.Valid values are: '\n' (newline), '\t' (tab), '\r\n' (Windows newline), ',' (comma).
- See Also:
-
builder
-