Class: AWSCDK::CustomerProfiles::CfnIntegration::MarketoSourcePropertiesProperty

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

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.



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

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



814
815
816
817
818
# File 'customer_profiles/cfn_integration.rb', line 814

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

Instance Method Details

#to_jsiiObject



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