Class: Aws::Firehose::Types::KinesisStreamSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::KinesisStreamSourceConfiguration
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
The stream and role Amazon Resource Names (ARNs) for a Kinesis data stream used as the source for a Firehose stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kinesis_stream_arn ⇒ String
The ARN of the source Kinesis data stream.
-
#role_arn ⇒ String
The ARN of the role that provides access to the source Kinesis data stream.
Instance Attribute Details
#kinesis_stream_arn ⇒ String
The ARN of the source Kinesis data stream. For more information, see Amazon Kinesis Data Streams ARN Format.
3202 3203 3204 3205 3206 3207 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3202 class KinesisStreamSourceConfiguration < Struct.new( :kinesis_stream_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that provides access to the source Kinesis data stream. For more information, see Amazon Web Services Identity and Access Management (IAM) ARN Format.
3202 3203 3204 3205 3206 3207 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3202 class KinesisStreamSourceConfiguration < Struct.new( :kinesis_stream_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |