aws-cdk-lib.aws_pinpoint.CfnEventStreamProps

interface CfnEventStreamProps

LanguageType name
.NETAmazon.CDK.AWS.Pinpoint.CfnEventStreamProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnEventStreamProps
Javasoftware.amazon.awscdk.services.pinpoint.CfnEventStreamProps
Pythonaws_cdk.aws_pinpoint.CfnEventStreamProps
TypeScript aws-cdk-lib » aws_pinpoint » CfnEventStreamProps

Properties for defining a CfnEventStream.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpoint as pinpoint } from 'aws-cdk-lib';
const cfnEventStreamProps: pinpoint.CfnEventStreamProps = {
  applicationId: 'applicationId',
  destinationStreamArn: 'destinationStreamArn',
  roleArn: 'roleArn',
};

Properties

NameTypeDescription
applicationIdstringThe unique identifier for the Amazon Pinpoint application that you want to export data from.
destinationStreamArnstringThe Amazon Resource Name (ARN) of the Amazon Kinesis data stream or Amazon Kinesis Data Firehose delivery stream that you want to publish event data to.
roleArnstringThe 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

The unique identifier for the Amazon Pinpoint application that you want to export data from.


destinationStreamArn

Type: string

The Amazon Resource Name (ARN) of the Amazon Kinesis data stream or Amazon Kinesis 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 Kinesis Data Firehose delivery stream, the ARN format is: arn:aws:firehose: region : account-id :deliverystream/ stream_name


roleArn

Type: string

The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.