interface CfnEventStreamMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnEventStreamMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnEventStreamMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnEventStreamMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnEventStreamMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnEventStreamMixinProps |
Properties for CfnEventStreamPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const cfnEventStreamMixinProps: pinpoint_mixins.CfnEventStreamMixinProps = {
applicationId: 'applicationId',
destinationStreamArn: 'destinationStreamArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier for the Amazon Pinpoint application that you want to export data from. |
| destination | string | The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to. |
| role | string | The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account. |
applicationId?
Type:
string
(optional)
The unique identifier for the Amazon Pinpoint application that you want to export data from.
destinationStreamArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to.
For a Kinesis Data Stream, the ARN format is: arn:aws:kinesis: region : account-id :stream/ stream_name
For a Firehose delivery stream, the ARN format is: arn:aws:firehose: region : account-id :deliverystream/ stream_name
roleArn?
Type:
string
(optional)
The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.

.NET
Go
Java
Python
TypeScript