Class: AWSCDK::CustomerProfiles::CfnIntegration::ZendeskSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
customer_profiles/cfn_integration.rb

Overview

The properties that are applied when using Zendesk as a flow source.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ ZendeskSourcePropertiesProperty

Returns a new instance of ZendeskSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Zendesk flow source.



1451
1452
1453
1454
# File 'customer_profiles/cfn_integration.rb', line 1451

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 Zendesk flow source.



1460
1461
1462
# File 'customer_profiles/cfn_integration.rb', line 1460

def object
  @object
end

Class Method Details

.jsii_propertiesObject



1462
1463
1464
1465
1466
# File 'customer_profiles/cfn_integration.rb', line 1462

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

Instance Method Details

#to_jsiiObject



1468
1469
1470
1471
1472
1473
1474
# File 'customer_profiles/cfn_integration.rb', line 1468

def to_jsii
  result = {}
  result.merge!({
    "object" => @object,
  })
  result.compact
end