interface KinesisFirehoseDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnConfigurationSetPropsMixin.KinesisFirehoseDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnConfigurationSetPropsMixin_KinesisFirehoseDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnConfigurationSetPropsMixin.KinesisFirehoseDestinationProperty |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnConfigurationSetPropsMixin.KinesisFirehoseDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnConfigurationSetPropsMixin » 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 { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const kinesisFirehoseDestinationProperty: smsvoice_mixins.CfnConfigurationSetPropsMixin.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
(optional)
The Amazon Resource Name (ARN) of the delivery stream.
iamRoleArn?
Type:
string
(optional)
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