interface FirehoseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTEvents.Mixins.CfnDetectorModelPropsMixin.FirehoseProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotevents/mixins#CfnDetectorModelPropsMixin_FirehoseProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotevents.mixins.CfnDetectorModelPropsMixin.FirehoseProperty |
Python | aws_cdk.mixins_preview.aws_iotevents.mixins.CfnDetectorModelPropsMixin.FirehoseProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotevents » mixins » CfnDetectorModelPropsMixin » FirehoseProperty |
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 { mixins as iotevents_mixins } from '@aws-cdk/mixins-preview/aws-iotevents';
const firehoseProperty: iotevents_mixins.CfnDetectorModelPropsMixin.FirehoseProperty = {
deliveryStreamName: 'deliveryStreamName',
payload: {
contentExpression: 'contentExpression',
type: 'type',
},
separator: 'separator',
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The name of the Kinesis Data Firehose delivery stream where the data is written. |
| payload? | IResolvable | Payload | You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream. |
| separator? | string | A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. |
deliveryStreamName?
Type:
string
(optional)
The name of the Kinesis Data Firehose delivery stream where the data is written.
payload?
Type:
IResolvable | Payload
(optional)
You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.
separator?
Type:
string
(optional)
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).

.NET
Go
Java
Python
TypeScript