Interface CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty.Jsii$Proxy
- Enclosing class:
- CfnConfigurationSetEventDestination
@Stability(Stable)
public static interface CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty
extends software.amazon.jsii.JsiiSerializable
An object that defines an Amazon Kinesis Data Firehose destination for email events.
 
You can use Amazon Kinesis Data Firehose to stream data to other services, such as Amazon S3 and Amazon Redshift.
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.pinpointemail.*;
 KinesisFirehoseDestinationProperty kinesisFirehoseDestinationProperty = KinesisFirehoseDestinationProperty.builder()
         .deliveryStreamArn("deliveryStreamArn")
         .iamRoleArn("iamRoleArn")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose stream that Amazon Pinpoint sends email events to.The Amazon Resource Name (ARN) of the IAM role that Amazon Pinpoint uses when sending email events to the Amazon Kinesis Data Firehose stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDeliveryStreamArnThe Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose stream that Amazon Pinpoint sends email events to.
- 
getIamRoleArnThe Amazon Resource Name (ARN) of the IAM role that Amazon Pinpoint uses when sending email events to the Amazon Kinesis Data Firehose stream.
- 
builder@Stability(Stable) static CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty.Builder builder()
 
-