Class: AWSCDK::AppFlow::CfnFlow::ServiceNowSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::ServiceNowSourcePropertiesProperty
- 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
-
#object ⇒ String
readonly
The object specified in the ServiceNow flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ ServiceNowSourcePropertiesProperty
constructor
A new instance of ServiceNowSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ ServiceNowSourcePropertiesProperty
Returns a new instance of ServiceNowSourcePropertiesProperty.
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
#object ⇒ String (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_properties ⇒ Object
2627 2628 2629 2630 2631 |
# File 'app_flow/cfn_flow.rb', line 2627 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |