Class: Aws::KinesisAnalytics::Types::KinesisStreamsOutputUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::KinesisStreamsOutputUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
When updating an output configuration using the [UpdateApplication] operation, provides information about an Amazon Kinesis stream configured as the destination.
[1]: docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn_update ⇒ String
Amazon Resource Name (ARN) of the Amazon Kinesis stream where you want to write the output.
-
#role_arn_update ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.
Instance Attribute Details
#resource_arn_update ⇒ String
Amazon Resource Name (ARN) of the Amazon Kinesis stream where you want to write the output.
1758 1759 1760 1761 1762 1763 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1758 class KinesisStreamsOutputUpdate < Struct.new( :resource_arn_update, :role_arn_update) SENSITIVE = [] include Aws::Structure end |
#role_arn_update ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.
1758 1759 1760 1761 1762 1763 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1758 class KinesisStreamsOutputUpdate < Struct.new( :resource_arn_update, :role_arn_update) SENSITIVE = [] include Aws::Structure end |