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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Note:

When making an API call, you may pass KinesisStreamSourceConfiguration data as a hash:

{
  kinesis_stream_arn: "KinesisStreamARN", # required
  role_arn: "RoleARN", # required
}

The stream and role Amazon Resource Names (ARNs) for a Kinesis data stream used as the source for a delivery stream.

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)


2020
2021
2022
2023
2024
# File 'lib/aws-sdk-firehose/types.rb', line 2020

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

#role_arnString

The ARN of the role that provides access to the source Kinesis data stream. For more information, see [AWS 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)


2020
2021
2022
2023
2024
# File 'lib/aws-sdk-firehose/types.rb', line 2020

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