public static interface CfnAlarmModel.FirehoseProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAlarmModel.FirehoseProperty.Builder
A builder for
CfnAlarmModel.FirehoseProperty |
static class |
CfnAlarmModel.FirehoseProperty.Jsii$Proxy
An implementation for
CfnAlarmModel.FirehoseProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAlarmModel.FirehoseProperty.Builder |
builder() |
java.lang.String |
getDeliveryStreamName()
The name of the Kinesis Data Firehose delivery stream where the data is written.
|
default java.lang.Object |
getPayload()
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
|
default java.lang.String |
getSeparator()
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream.
|
java.lang.String getDeliveryStreamName()
default java.lang.Object getPayload()
default java.lang.String getSeparator()
Valid values are: '\n' (newline), '\t' (tab), '\r\n' (Windows newline), ',' (comma).
static CfnAlarmModel.FirehoseProperty.Builder builder()