@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.222Z") @Stability(value=Stable) public interface CfnEventStreamProps 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.pinpoint.*;
CfnEventStreamProps cfnEventStreamProps = CfnEventStreamProps.builder()
.applicationId("applicationId")
.destinationStreamArn("destinationStreamArn")
.roleArn("roleArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEventStreamProps.Builder
A builder for
CfnEventStreamProps |
static class |
CfnEventStreamProps.Jsii$Proxy
An implementation for
CfnEventStreamProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEventStreamProps.Builder |
builder() |
String |
getApplicationId()
The unique identifier for the Amazon Pinpoint application that you want to export data from.
|
String |
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.
|
String |
getRoleArn()
The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.
|
@Stability(value=Stable) @NotNull String getApplicationId()
@Stability(value=Stable) @NotNull String getDestinationStreamArn()
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
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) static CfnEventStreamProps.Builder builder()
CfnEventStreamProps.Builder of CfnEventStreamPropsCopyright © 2022. All rights reserved.