Class: AWSCDK::AppFlow::CfnFlow::MarketoSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_flow.rb

Overview

The properties that are applied when Marketo is being used as a source.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ MarketoSourcePropertiesProperty

Returns a new instance of MarketoSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Marketo flow source.



1703
1704
1705
1706
# File 'app_flow/cfn_flow.rb', line 1703

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 Marketo flow source.



1712
1713
1714
# File 'app_flow/cfn_flow.rb', line 1712

def object
  @object
end

Class Method Details

.jsii_propertiesObject



1714
1715
1716
1717
1718
# File 'app_flow/cfn_flow.rb', line 1714

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

Instance Method Details

#to_jsiiObject



1720
1721
1722
1723
1724
1725
1726
# File 'app_flow/cfn_flow.rb', line 1720

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