Class: Aws::KinesisAnalytics::Types::KinesisFirehoseOutputUpdate

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 KinesisFirehoseOutputUpdate data as a hash:

{
  resource_arn_update: "ResourceARN",
  role_arn_update: "RoleARN",
}

When updating an output configuration using the UpdateApplication operation, provides information about an Amazon Kinesis Firehose delivery stream configured as the destination.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arn_updateString

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream to write to.

Returns:

  • (String)


2040
2041
2042
2043
2044
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2040

class KinesisFirehoseOutputUpdate < Struct.new(
  :resource_arn_update,
  :role_arn_update)
  include Aws::Structure
end

#role_arn_updateString

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.

Returns:

  • (String)


2040
2041
2042
2043
2044
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2040

class KinesisFirehoseOutputUpdate < Struct.new(
  :resource_arn_update,
  :role_arn_update)
  include Aws::Structure
end