Class: Aws::KinesisAnalytics::Types::KinesisStreamsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::KinesisStreamsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
When configuring application output, identifies an Amazon Kinesis stream as the destination. You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the stream on your behalf.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
ARN of the destination Amazon Kinesis stream to write to.
-
#role_arn ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.
Instance Attribute Details
#resource_arn ⇒ String
ARN of the destination Amazon Kinesis stream to write to.
1709 1710 1711 1712 1713 1714 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1709 class KinesisStreamsOutput < Struct.new( :resource_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf. You need to grant the necessary permissions to this role.
1709 1710 1711 1712 1713 1714 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1709 class KinesisStreamsOutput < Struct.new( :resource_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |