Class: AWSCDK::CustomerProfiles::CfnIntegration::ZendeskSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CustomerProfiles::CfnIntegration::ZendeskSourcePropertiesProperty
- Defined in:
- customer_profiles/cfn_integration.rb
Overview
The properties that are applied when using Zendesk as a flow source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Zendesk flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ ZendeskSourcePropertiesProperty
constructor
A new instance of ZendeskSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ ZendeskSourcePropertiesProperty
Returns a new instance of ZendeskSourcePropertiesProperty.
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
#object ⇒ String (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_properties ⇒ Object
1462 1463 1464 1465 1466 |
# File 'customer_profiles/cfn_integration.rb', line 1462 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |