Class: AWSCDK::AppFlow::CfnFlow::AmplitudeSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::AmplitudeSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Amplitude is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Amplitude flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ AmplitudeSourcePropertiesProperty
constructor
A new instance of AmplitudeSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ AmplitudeSourcePropertiesProperty
Returns a new instance of AmplitudeSourcePropertiesProperty.
712 713 714 715 |
# File 'app_flow/cfn_flow.rb', line 712 def initialize(object:) @object = object Jsii::Type.check_type(@object, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "object") end |
Instance Attribute Details
#object ⇒ String (readonly)
The object specified in the Amplitude flow source.
721 722 723 |
# File 'app_flow/cfn_flow.rb', line 721 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
723 724 725 726 727 |
# File 'app_flow/cfn_flow.rb', line 723 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
729 730 731 732 733 734 735 |
# File 'app_flow/cfn_flow.rb', line 729 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |