Class: AWSCDK::AppFlow::CfnFlow::SlackSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::SlackSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Slack is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Slack flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ SlackSourcePropertiesProperty
constructor
A new instance of SlackSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ SlackSourcePropertiesProperty
Returns a new instance of SlackSourcePropertiesProperty.
2682 2683 2684 2685 |
# File 'app_flow/cfn_flow.rb', line 2682 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 Slack flow source.
2691 2692 2693 |
# File 'app_flow/cfn_flow.rb', line 2691 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
2693 2694 2695 2696 2697 |
# File 'app_flow/cfn_flow.rb', line 2693 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
2699 2700 2701 2702 2703 2704 2705 |
# File 'app_flow/cfn_flow.rb', line 2699 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |