Class: AWSCDK::AppFlow::CfnFlow::ServiceNowSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_flow.rb

Overview

The properties that are applied when ServiceNow is being used as a source.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ ServiceNowSourcePropertiesProperty

Returns a new instance of ServiceNowSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the ServiceNow flow source.



2616
2617
2618
2619
# File 'app_flow/cfn_flow.rb', line 2616

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



2625
2626
2627
# File 'app_flow/cfn_flow.rb', line 2625

def object
  @object
end

Class Method Details

.jsii_propertiesObject



2627
2628
2629
2630
2631
# File 'app_flow/cfn_flow.rb', line 2627

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

Instance Method Details

#to_jsiiObject



2633
2634
2635
2636
2637
2638
2639
# File 'app_flow/cfn_flow.rb', line 2633

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