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
Contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event destination.
Event destinations, such as Amazon Kinesis Firehose, are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide .
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.ses.*; KinesisFirehoseDestinationProperty kinesisFirehoseDestinationProperty = KinesisFirehoseDestinationProperty.builder() .deliveryStreamArn("deliveryStreamArn") .iamRoleArn("iamRoleArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ARN of the Amazon Kinesis Firehose stream that email sending events should be published to.The ARN of the IAM role under which Amazon SES publishes email sending events to the Amazon Kinesis Firehose stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeliveryStreamArn
The ARN of the Amazon Kinesis Firehose stream that email sending events should be published to. -
getIamRoleArn
The ARN of the IAM role under which Amazon SES publishes email sending events to the Amazon Kinesis Firehose stream. -
builder
@Stability(Stable) static CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty.Builder builder()
-