Class: AWSCDK::AppFlow::CfnFlow::AmplitudeSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ AmplitudeSourcePropertiesProperty

Returns a new instance of AmplitudeSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Amplitude flow source.



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

#objectString (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_propertiesObject



723
724
725
726
727
# File 'app_flow/cfn_flow.rb', line 723

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

Instance Method Details

#to_jsiiObject



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