Class: AWSCDK::KinesisAnalytics::CfnApplicationOutputV2::KinesisFirehoseOutputProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
kinesis_analytics/cfn_application_output_v2.rb

Overview

For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination.

You provide the stream Amazon Resource Name (ARN) of the delivery stream.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(resource_arn:) ⇒ KinesisFirehoseOutputProperty

Returns a new instance of KinesisFirehoseOutputProperty.

Parameters:

  • resource_arn (String)

    The ARN of the destination delivery stream to write to.



556
557
558
559
# File 'kinesis_analytics/cfn_application_output_v2.rb', line 556

def initialize(resource_arn:)
  @resource_arn = resource_arn
  Jsii::Type.check_type(@resource_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "resourceArn")
end

Instance Attribute Details

#resource_arnString (readonly)

The ARN of the destination delivery stream to write to.



565
566
567
# File 'kinesis_analytics/cfn_application_output_v2.rb', line 565

def resource_arn
  @resource_arn
end

Class Method Details

.jsii_propertiesObject



567
568
569
570
571
# File 'kinesis_analytics/cfn_application_output_v2.rb', line 567

def self.jsii_properties
  {
    :resource_arn => "resourceArn",
  }
end

Instance Method Details

#to_jsiiObject



573
574
575
576
577
578
579
# File 'kinesis_analytics/cfn_application_output_v2.rb', line 573

def to_jsii
  result = {}
  result.merge!({
    "resourceArn" => @resource_arn,
  })
  result.compact
end