interface KinesisFirehoseDestinationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSetEventDestination_KinesisFirehoseDestinationProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnConfigurationSetEventDestination » KinesisFirehoseDestinationProperty |
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 { aws_ses as ses } from 'aws-cdk-lib';
const kinesisFirehoseDestinationProperty: ses.CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty = {
deliveryStreamArn: 'deliveryStreamArn',
iamRoleArn: 'iamRoleArn',
};
Properties
Name | Type | Description |
---|---|---|
delivery | string | The ARN of the Amazon Kinesis Firehose stream that email sending events should be published to. |
iam | string | The Amazon Resource Name (ARN) of the IAM role that the Amazon SES API v2 uses to send email events to the Amazon Kinesis Data Firehose stream. |
deliveryStreamArn
Type:
string
The ARN of the Amazon Kinesis Firehose stream that email sending events should be published to.
iamRoleArn
Type:
string
The Amazon Resource Name (ARN) of the IAM role that the Amazon SES API v2 uses to send email events to the Amazon Kinesis Data Firehose stream.