Class: AWSCDK::AppFlow::CfnFlow::SlackSourcePropertiesProperty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ SlackSourcePropertiesProperty

Returns a new instance of SlackSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Slack flow source.



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

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



2693
2694
2695
2696
2697
# File 'app_flow/cfn_flow.rb', line 2693

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

Instance Method Details

#to_jsiiObject



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