Class: Aws::KinesisAnalytics::Types::KinesisFirehoseInput

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

Overview

Note:

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

{
  resource_arn: "ResourceARN", # required
  role_arn: "RoleARN", # required
}

Identifies an Amazon Kinesis Firehose delivery stream as the streaming source. You provide the delivery stream’s Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis Analytics to access the stream on your behalf.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

ARN of the input delivery stream.

Returns:

  • (String)


1903
1904
1905
1906
1907
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1903

class KinesisFirehoseInput < Struct.new(
  :resource_arn,
  :role_arn)
  include Aws::Structure
end

#role_arnString

ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to make sure that the role has the necessary permissions to access the stream.

Returns:

  • (String)


1903
1904
1905
1906
1907
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1903

class KinesisFirehoseInput < Struct.new(
  :resource_arn,
  :role_arn)
  include Aws::Structure
end