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();
 
  • Method Details

    • getApplicationId

      @Stability(Stable) @NotNull String getApplicationId()
      The unique identifier for the Amazon Pinpoint application that you want to export data from.
    • getDestinationStreamArn

      @Stability(Stable) @NotNull 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.

      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

      @Stability(Stable) @NotNull 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.
    • builder

      @Stability(Stable) static CfnEventStreamProps.Builder builder()
      Returns:
      a CfnEventStreamProps.Builder of CfnEventStreamProps