Interface CfnEventStreamMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventStreamMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:02.297Z")
@Stability(Stable)
public interface CfnEventStreamMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEventStreamPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.pinpoint.*;
CfnEventStreamMixinProps cfnEventStreamMixinProps = CfnEventStreamMixinProps.builder()
.applicationId("applicationId")
.destinationStreamArn("destinationStreamArn")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventStreamMixinPropsstatic final classAn implementation forCfnEventStreamMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe unique identifier for the Amazon Pinpoint application that you want to export data from.default StringThe Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to.default StringThe 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.- See Also:
-
getDestinationStreamArn
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_nameFor a Firehose delivery stream, the ARN format is:
arn:aws:firehose: region : account-id :deliverystream/ stream_name- See Also:
-
getRoleArn
The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.- See Also:
-
builder
- Returns:
- a
CfnEventStreamMixinProps.BuilderofCfnEventStreamMixinProps
-