SlackChannelConfigurationReference

class aws_cdk.aws_supportapp.SlackChannelConfigurationReference(*, channel_id, team_id)

Bases: object

A reference to a SlackChannelConfiguration resource.

Parameters:
  • channel_id (str) – The ChannelId of the SlackChannelConfiguration resource.

  • team_id (str) – The TeamId of the SlackChannelConfiguration resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_supportapp as supportapp

slack_channel_configuration_reference = supportapp.SlackChannelConfigurationReference(
    channel_id="channelId",
    team_id="teamId"
)

Attributes

channel_id

The ChannelId of the SlackChannelConfiguration resource.

team_id

The TeamId of the SlackChannelConfiguration resource.