Interface CfnEventStreamProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventStreamProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.828Z")
@Stability(Stable)
public interface CfnEventStreamProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pinpoint.*; CfnEventStreamProps cfnEventStreamProps = CfnEventStreamProps.builder() .applicationId("applicationId") .destinationStreamArn("destinationStreamArn") .roleArn("roleArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEventStreamProps
static final class
An implementation forCfnEventStreamProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEventStreamProps.Builder
builder()
The unique identifier for the Amazon Pinpoint application that you want to export data from.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.The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The unique identifier for the Amazon Pinpoint application that you want to export data from. -
getDestinationStreamArn
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
-
getRoleArn
The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account. -
builder
- Returns:
- a
CfnEventStreamProps.Builder
ofCfnEventStreamProps
-