The CDK Construct Library for AWS::Chatbot
Project description
AWS::Chatbot Construct Library
---AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see the Migrating to AWS CDK v2 guide.
AWS Chatbot is an AWS service that enables DevOps and software development teams to use Slack chat rooms to monitor and respond to operational events in their AWS Cloud. AWS Chatbot processes AWS service notifications from Amazon Simple Notification Service (Amazon SNS), and forwards them to Slack chat rooms so teams can analyze and act on them immediately, regardless of location.
This module is part of the AWS Cloud Development Kit project.
import aws_cdk.aws_chatbot as chatbot
import aws_cdk.aws_sns as sns
import aws_cdk.aws_iam as iam
slack_channel = chatbot.SlackChannelConfiguration(self, "MySlackChannel",
slack_channel_configuration_name="YOUR_CHANNEL_NAME",
slack_workspace_id="YOUR_SLACK_WORKSPACE_ID",
slack_channel_id="YOUR_SLACK_CHANNEL_ID"
)
slack_channel.add_to_role_policy(iam.PolicyStatement(
effect=iam.Effect.ALLOW,
actions=["s3:GetObject"
],
resources=["arn:aws:s3:::abc/xyz/123.txt"]
))
slack_channel.add_notification_topic(sns.Topic(self, "MyTopic"))
Log Group
Slack channel configuration automatically create a log group with the name /aws/chatbot/<configuration-name>
in us-east-1
upon first execution with
log data set to never expire.
The logRetention
property can be used to set a different expiration period. A log group will be created if not already exists.
If the log group already exists, it's expiration will be configured to the value specified in this construct (never expire, by default).
By default, CDK uses the AWS SDK retry options when interacting with the log group. The logRetentionRetryOptions
property
allows you to customize the maximum number of retries and base backoff duration.
Note that, if logRetention
is set, a CloudFormation custom
resource is added
to the stack that pre-creates the log group as part of the stack deployment, if it already doesn't exist, and sets the
correct log retention period (never expire, by default).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aws-cdk.aws-chatbot-1.204.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a713ebc554c94ae4ce3e0ec9628d524b91272eeb20f7b9552fc45bf3da60dd21 |
|
MD5 | fb4bb9fc14f97cc2d98e1660e39e1977 |
|
BLAKE2b-256 | b8bd2cf8ca47d4e5014dd46dc75930d9459b4ce5f5dce4c2fc0a7e47bf426ae8 |
Hashes for aws_cdk.aws_chatbot-1.204.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d29ad11d55483ba054999046280952c50fd1db35a9b91ce1608e79de5684004 |
|
MD5 | bcaaf048e6e206c00c3688a530a91079 |
|
BLAKE2b-256 | 51e102f998409b0d81ebec5c0f378833b59bf962b198bf19ff101423fb7d329e |