Class: AWSCDK::AppFlow::CfnFlow::PardotSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::PardotSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Salesforce Pardot is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Salesforce Pardot flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ PardotSourcePropertiesProperty
constructor
A new instance of PardotSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ PardotSourcePropertiesProperty
Returns a new instance of PardotSourcePropertiesProperty.
1771 1772 1773 1774 |
# File 'app_flow/cfn_flow.rb', line 1771 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 Salesforce Pardot flow source.
1780 1781 1782 |
# File 'app_flow/cfn_flow.rb', line 1780 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
1782 1783 1784 1785 1786 |
# File 'app_flow/cfn_flow.rb', line 1782 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
1788 1789 1790 1791 1792 1793 1794 |
# File 'app_flow/cfn_flow.rb', line 1788 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |