Class: Aws::KinesisAnalytics::Types::KinesisFirehoseOutputUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::KinesisFirehoseOutputUpdate
- 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 Firehose delivery 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 Firehose delivery stream to write to.
-
#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 Firehose delivery stream to write to.
1617 1618 1619 1620 1621 1622 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1617 class KinesisFirehoseOutputUpdate < 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.
1617 1618 1619 1620 1621 1622 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1617 class KinesisFirehoseOutputUpdate < Struct.new( :resource_arn_update, :role_arn_update) SENSITIVE = [] include Aws::Structure end |