Class: AWSCDK::KinesisAnalyticsv2::CfnApplicationOutput::KinesisFirehoseOutputProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
kinesis_analyticsv2/cfn_application_output.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.



555
556
557
558
# File 'kinesis_analyticsv2/cfn_application_output.rb', line 555

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.



564
565
566
# File 'kinesis_analyticsv2/cfn_application_output.rb', line 564

def resource_arn
  @resource_arn
end

Class Method Details

.jsii_propertiesObject



566
567
568
569
570
# File 'kinesis_analyticsv2/cfn_application_output.rb', line 566

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

Instance Method Details

#to_jsiiObject



572
573
574
575
576
577
578
# File 'kinesis_analyticsv2/cfn_application_output.rb', line 572

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