Class: AWSCDK::AppFlow::CfnFlow::ZendeskSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_flow.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.



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

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



3556
3557
3558
3559
3560
# File 'app_flow/cfn_flow.rb', line 3556

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

Instance Method Details

#to_jsiiObject



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