Class: AWSCDK::AppFlow::CfnFlow::MarketoSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::MarketoSourcePropertiesProperty
- 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
-
#object ⇒ String
readonly
The object specified in the Marketo flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ MarketoSourcePropertiesProperty
constructor
A new instance of MarketoSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ MarketoSourcePropertiesProperty
Returns a new instance of MarketoSourcePropertiesProperty.
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
#object ⇒ String (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_properties ⇒ Object
1714 1715 1716 1717 1718 |
# File 'app_flow/cfn_flow.rb', line 1714 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |