Class: AWSCDK::KinesisAnalytics::CfnApplicationOutputV2Props Deprecated
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::KinesisAnalytics::CfnApplicationOutputV2Props
- Defined in:
- kinesis_analytics/cfn_application_output_v2_props.rb
Overview
Deprecated.
use aws-kinesisanalyticsv2 instead
Properties for defining a CfnApplicationOutput.
Instance Attribute Summary collapse
-
#application_name ⇒ String
readonly
The name of the application.
-
#output ⇒ AWSCDK::IResolvable, AWSCDK::KinesisAnalytics::CfnApplicationOutputV2::OutputProperty
readonly
Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(application_name:, output:) ⇒ CfnApplicationOutputV2Props
constructor
A new instance of CfnApplicationOutputV2Props.
- #to_jsii ⇒ Object
Constructor Details
#initialize(application_name:, output:) ⇒ CfnApplicationOutputV2Props
Returns a new instance of CfnApplicationOutputV2Props.
12 13 14 15 16 17 |
# File 'kinesis_analytics/cfn_application_output_v2_props.rb', line 12 def initialize(application_name:, output:) @application_name = application_name Jsii::Type.check_type(@application_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "applicationName") @output = output.is_a?(Hash) ? ::AWSCDK::KinesisAnalytics::CfnApplicationOutputV2::OutputProperty.new(**output.transform_keys(&:to_sym)) : output Jsii::Type.check_type(@output, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19raW5lc2lzYW5hbHl0aWNzLkNmbkFwcGxpY2F0aW9uT3V0cHV0VjIuT3V0cHV0UHJvcGVydHkifV19fQ==")), "output") end |
Instance Attribute Details
#application_name ⇒ String (readonly)
The name of the application.
23 24 25 |
# File 'kinesis_analytics/cfn_application_output_v2_props.rb', line 23 def application_name @application_name end |
#output ⇒ AWSCDK::IResolvable, AWSCDK::KinesisAnalytics::CfnApplicationOutputV2::OutputProperty (readonly)
Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
30 31 32 |
# File 'kinesis_analytics/cfn_application_output_v2_props.rb', line 30 def output @output end |
Class Method Details
.jsii_properties ⇒ Object
32 33 34 35 36 37 |
# File 'kinesis_analytics/cfn_application_output_v2_props.rb', line 32 def self.jsii_properties { :application_name => "applicationName", :output => "output", } end |
Instance Method Details
#to_jsii ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'kinesis_analytics/cfn_application_output_v2_props.rb', line 39 def to_jsii result = {} result.merge!({ "applicationName" => @application_name, "output" => @output, }) result.compact end |