Class 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.
Inherited Members
Namespace: Amazon.CDK.AWS.SMSVOICE
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfigurationSet.KinesisFirehoseDestinationProperty : CfnConfigurationSet.IKinesisFirehoseDestinationProperty
Syntax (vb)
Public Class CfnConfigurationSet.KinesisFirehoseDestinationProperty Implements CfnConfigurationSet.IKinesisFirehoseDestinationProperty
Remarks
Event destinations, such as Firehose, are associated with configuration sets, which enable you to publish message sending events.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SMSVOICE;
var kinesisFirehoseDestinationProperty = new KinesisFirehoseDestinationProperty {
DeliveryStreamArn = "deliveryStreamArn",
IamRoleArn = "iamRoleArn"
};
Synopsis
Constructors
| 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. |
Properties
| DeliveryStreamArn | The Amazon Resource Name (ARN) of the delivery stream. |
| IamRoleArn | The ARN of an AWS Identity and Access Management role that is able to write event data to an Amazon Data Firehose destination. |
Constructors
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.
public KinesisFirehoseDestinationProperty()
Remarks
Event destinations, such as Firehose, are associated with configuration sets, which enable you to publish message sending events.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SMSVOICE;
var kinesisFirehoseDestinationProperty = new KinesisFirehoseDestinationProperty {
DeliveryStreamArn = "deliveryStreamArn",
IamRoleArn = "iamRoleArn"
};
Properties
DeliveryStreamArn
The Amazon Resource Name (ARN) of the delivery stream.
public string DeliveryStreamArn { get; set; }
Property Value
Remarks
IamRoleArn
The ARN of an AWS Identity and Access Management role that is able to write event data to an Amazon Data Firehose destination.
public string IamRoleArn { get; set; }