Class: AWSCDK::AppFlow::CfnFlow::ZendeskSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::ZendeskSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.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.
3545 3546 3547 3548 |
# File 'app_flow/cfn_flow.rb', line 3545 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.
3554 3555 3556 |
# File 'app_flow/cfn_flow.rb', line 3554 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
3556 3557 3558 3559 3560 |
# File 'app_flow/cfn_flow.rb', line 3556 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
3562 3563 3564 3565 3566 3567 3568 |
# File 'app_flow/cfn_flow.rb', line 3562 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |