@Stability(value=Stable)
public static interface CfnDetectorModel.FirehoseProperty
extends software.amazon.jsii.JsiiSerializable
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 |
CfnDetectorModel.FirehoseProperty.Builder
A builder for
CfnDetectorModel.FirehoseProperty |
static class |
CfnDetectorModel.FirehoseProperty.Jsii$Proxy
An implementation for
CfnDetectorModel.FirehoseProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDetectorModel.FirehoseProperty.Builder |
builder() |
String |
getDeliveryStreamName()
The name of the Kinesis Data Firehose delivery stream where the data is written.
|
default Object |
getPayload()
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
|
default String |
getSeparator()
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream.
|
@Stability(value=Stable) @NotNull String getDeliveryStreamName()
@Stability(value=Stable) @Nullable default Object getPayload()
@Stability(value=Stable) @Nullable default String getSeparator()
Valid values are: '\n' (newline), '\t' (tab), '\r\n' (Windows newline), ',' (comma).
@Stability(value=Stable) static CfnDetectorModel.FirehoseProperty.Builder builder()
Copyright © 2022. All rights reserved.