Class: Aws::PinpointSMSVoice::Types::KinesisFirehoseDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoice::Types::KinesisFirehoseDestination
- Defined in:
- gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb
Overview
Note:
When making an API call, you may pass KinesisFirehoseDestination data as a hash:
{
delivery_stream_arn: "String",
iam_role_arn: "String",
}
An object that contains information about an event destination that sends data to Amazon Kinesis Data Firehose.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_stream_arn ⇒ String
The Amazon Resource Name (ARN) of an IAM role that can write data to an Amazon Kinesis Data Firehose stream.
-
#iam_role_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose destination that you want to use in the event destination.
Instance Attribute Details
#delivery_stream_arn ⇒ String
The Amazon Resource Name (ARN) of an IAM role that can write data to an Amazon Kinesis Data Firehose stream.
407 408 409 410 411 412 |
# File 'gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb', line 407 class KinesisFirehoseDestination < Struct.new( :delivery_stream_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |
#iam_role_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose destination that you want to use in the event destination.
407 408 409 410 411 412 |
# File 'gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb', line 407 class KinesisFirehoseDestination < Struct.new( :delivery_stream_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |