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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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].

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kinesis-streams

Returns:

  • (String)


2582
2583
2584
2585
2586
2587
# File 'lib/aws-sdk-firehose/types.rb', line 2582

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].

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam

Returns:

  • (String)


2582
2583
2584
2585
2586
2587
# File 'lib/aws-sdk-firehose/types.rb', line 2582

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