Class: AWSCDK::CustomerProfiles::CfnIntegration::MarketoSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CustomerProfiles::CfnIntegration::MarketoSourcePropertiesProperty
- Defined in:
- customer_profiles/cfn_integration.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.
803 804 805 806 |
# File 'customer_profiles/cfn_integration.rb', line 803 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.
812 813 814 |
# File 'customer_profiles/cfn_integration.rb', line 812 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
814 815 816 817 818 |
# File 'customer_profiles/cfn_integration.rb', line 814 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
820 821 822 823 824 825 826 |
# File 'customer_profiles/cfn_integration.rb', line 820 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |