Class: AWSCDK::AppFlow::CfnFlow::InforNexusSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ InforNexusSourcePropertiesProperty

Returns a new instance of InforNexusSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Infor Nexus flow source.



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

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



1603
1604
1605
1606
1607
# File 'app_flow/cfn_flow.rb', line 1603

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

Instance Method Details

#to_jsiiObject



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