Class: AWSCDK::AppFlow::CfnFlow::SingularSourcePropertiesProperty

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

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ SingularSourcePropertiesProperty

Returns a new instance of SingularSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Singular flow source.



2649
2650
2651
2652
# File 'app_flow/cfn_flow.rb', line 2649

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



2658
2659
2660
# File 'app_flow/cfn_flow.rb', line 2658

def object
  @object
end

Class Method Details

.jsii_propertiesObject



2660
2661
2662
2663
2664
# File 'app_flow/cfn_flow.rb', line 2660

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

Instance Method Details

#to_jsiiObject



2666
2667
2668
2669
2670
2671
2672
# File 'app_flow/cfn_flow.rb', line 2666

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