Class: Aws::Firehose::Types::KinesisStreamSourceConfiguration

Inherits:
Struct
  • Object
show all
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 delivery stream.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kinesis_stream_arnString

The ARN of the source Kinesis data stream. For more information, see Amazon Kinesis Data Streams ARN Format.

Returns:

  • (String)


2618
2619
2620
2621
2622
2623
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2618

class KinesisStreamSourceConfiguration < Struct.new(
  :kinesis_stream_arn,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

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.

Returns:

  • (String)


2618
2619
2620
2621
2622
2623
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2618

class KinesisStreamSourceConfiguration < Struct.new(
  :kinesis_stream_arn,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end