Class: AWSCDK::AppFlow::CfnFlow::InforNexusSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::InforNexusSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Infor Nexus is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Infor Nexus flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ InforNexusSourcePropertiesProperty
constructor
A new instance of InforNexusSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ InforNexusSourcePropertiesProperty
Returns a new instance of InforNexusSourcePropertiesProperty.
1592 1593 1594 1595 |
# File 'app_flow/cfn_flow.rb', line 1592 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 Infor Nexus flow source.
1601 1602 1603 |
# File 'app_flow/cfn_flow.rb', line 1601 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
1603 1604 1605 1606 1607 |
# File 'app_flow/cfn_flow.rb', line 1603 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
1609 1610 1611 1612 1613 1614 1615 |
# File 'app_flow/cfn_flow.rb', line 1609 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |