Class: AWSCDK::AppFlow::CfnFlow::PardotSourcePropertiesProperty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ PardotSourcePropertiesProperty

Returns a new instance of PardotSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Salesforce Pardot flow source.



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

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



1782
1783
1784
1785
1786
# File 'app_flow/cfn_flow.rb', line 1782

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

Instance Method Details

#to_jsiiObject



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