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

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

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

ARN of the input delivery stream.

Returns:

  • (String)


1495
1496
1497
1498
1499
1500
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 1495

class KinesisFirehoseInput < Struct.new(
  :resource_arn,
  :role_arn)
  SENSITIVE = []
  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)


1495
1496
1497
1498
1499
1500
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 1495

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