Class: AWSCDK::AppFlow::CfnConnectorProfile::SlackConnectorProfilePropertiesProperty

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

Overview

The connector-specific profile properties required when using Slack.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(instance_url:) ⇒ SlackConnectorProfilePropertiesProperty

Returns a new instance of SlackConnectorProfilePropertiesProperty.

Parameters:

  • instance_url (String)

    The location of the Slack resource.



2755
2756
2757
2758
# File 'app_flow/cfn_connector_profile.rb', line 2755

def initialize(instance_url:)
  @instance_url = instance_url
  Jsii::Type.check_type(@instance_url, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "instanceUrl")
end

Instance Attribute Details

#instance_urlString (readonly)

The location of the Slack resource.



2764
2765
2766
# File 'app_flow/cfn_connector_profile.rb', line 2764

def instance_url
  @instance_url
end

Class Method Details

.jsii_propertiesObject



2766
2767
2768
2769
2770
# File 'app_flow/cfn_connector_profile.rb', line 2766

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

Instance Method Details

#to_jsiiObject



2772
2773
2774
2775
2776
2777
2778
# File 'app_flow/cfn_connector_profile.rb', line 2772

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