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