interface KinesisFirehoseDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SMSVOICE.CfnConfigurationSet.KinesisFirehoseDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnConfigurationSet_KinesisFirehoseDestinationProperty |
Java | software.amazon.awscdk.services.smsvoice.CfnConfigurationSet.KinesisFirehoseDestinationProperty |
Python | aws_cdk.aws_smsvoice.CfnConfigurationSet.KinesisFirehoseDestinationProperty |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnConfigurationSet » KinesisFirehoseDestinationProperty |
Contains the delivery stream Amazon Resource Name (ARN), and the ARN of the AWS Identity and Access Management (IAM) role associated with a Firehose event destination.
Event destinations, such as Firehose, are associated with configuration sets, which enable you to publish message sending events.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_smsvoice as smsvoice } from 'aws-cdk-lib';
const kinesisFirehoseDestinationProperty: smsvoice.CfnConfigurationSet.KinesisFirehoseDestinationProperty = {
deliveryStreamArn: 'deliveryStreamArn',
iamRoleArn: 'iamRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The Amazon Resource Name (ARN) of the delivery stream. |
| iam | string | The ARN of an AWS Identity and Access Management role that is able to write event data to an Amazon Data Firehose destination. |
deliveryStreamArn
Type:
string
The Amazon Resource Name (ARN) of the delivery stream.
iamRoleArn
Type:
string
The ARN of an AWS Identity and Access Management role that is able to write event data to an Amazon Data Firehose destination.

.NET
Go
Java
Python
TypeScript