gammarers.aws-budgets-notification


Namegammarers.aws-budgets-notification JSON
Version 1.2.63 PyPI version JSON
download
home_pagehttps://github.com/gammarers/aws-budgets-notification.git
SummaryAWS Budgets Notification
upload_time2025-08-06 19:22:05
maintainerNone
docs_urlNone
authoryicr<yicr@users.noreply.github.com>
requires_python~=3.9
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AWS Budgets Notification

[![GitHub](https://img.shields.io/github/license/gammarers/aws-budgets-notification?style=flat-square)](https://github.com/gammarers/aws-budgets-notification/blob/main/LICENSE)
[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-budgets-notification?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-budgets-notification)
[![PyPI](https://img.shields.io/pypi/v/gammarers.aws-budgets-notification?style=flat-square)](https://pypi.org/project/gammarers.aws-budgets-notification/)
[![Nuget](https://img.shields.io/nuget/v/gammarers.CDK.AWS.BudgetNotification?style=flat-square)](https://www.nuget.org/packages/Gammarers.CDK.AWS.BudgetNotification/)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-budgets-notification/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-budgets-notification/actions/workflows/release.yml)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-budgets-notification?sort=semver&style=flat-square)](https://github.com/gammarers/aws-budgets-notification/releases)

[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-budgets-notification)](https://constructs.dev/packages/@gammarers/aws-budgets-notification)

A construct library for creating AWS Budgets Notification to Slack with the AWS CDK.

## Resources

This construct creating resource list.

* SNS Topic
* ChatBot SlackChannelConfiguration
* Budgets (linked account count or self)

## Install

### TypeScript

```shell
npm install @gammarers/aws-budgets-notification
# or
yarn add @gammarers/aws-budgets-notification
```

### Python

```shell
pip install gammarers.aws-budgets-notification
```

### C# / .NET

```shell
dotnet add package Gammarers.CDK.AWS.BudgetNotification
```

## Example

```python
import { BudgetsNotification } from '@gammarers/aws-budgets-notification';

new BudgetsNotification(stack, 'BudgetsNotification', {
  slackWorkspaceId: 'T0XXXX111', // already AWS account linked your Slack.
  slackChannelId: 'XXXXXXXX', // already created your slack channel.
  budgetLimitAmount: 50,
  // optional linked account list
  linkedAccounts: [
    '111111111111',
    '222222222222',
  ],
});
```

![example notification](./docs/slack-notification-image.png)

## License

This project is licensed under the Apache-2.0 License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gammarers/aws-budgets-notification.git",
    "name": "gammarers.aws-budgets-notification",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "yicr<yicr@users.noreply.github.com>",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/0e/76/afb92c7e3bced5945dbefdb5f6e0a7a8588b5a098435283d4074f8100834/gammarers_aws_budgets_notification-1.2.63.tar.gz",
    "platform": null,
    "description": "# AWS Budgets Notification\n\n[![GitHub](https://img.shields.io/github/license/gammarers/aws-budgets-notification?style=flat-square)](https://github.com/gammarers/aws-budgets-notification/blob/main/LICENSE)\n[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-budgets-notification?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-budgets-notification)\n[![PyPI](https://img.shields.io/pypi/v/gammarers.aws-budgets-notification?style=flat-square)](https://pypi.org/project/gammarers.aws-budgets-notification/)\n[![Nuget](https://img.shields.io/nuget/v/gammarers.CDK.AWS.BudgetNotification?style=flat-square)](https://www.nuget.org/packages/Gammarers.CDK.AWS.BudgetNotification/)\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-budgets-notification/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-budgets-notification/actions/workflows/release.yml)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-budgets-notification?sort=semver&style=flat-square)](https://github.com/gammarers/aws-budgets-notification/releases)\n\n[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-budgets-notification)](https://constructs.dev/packages/@gammarers/aws-budgets-notification)\n\nA construct library for creating AWS Budgets Notification to Slack with the AWS CDK.\n\n## Resources\n\nThis construct creating resource list.\n\n* SNS Topic\n* ChatBot SlackChannelConfiguration\n* Budgets (linked account count or self)\n\n## Install\n\n### TypeScript\n\n```shell\nnpm install @gammarers/aws-budgets-notification\n# or\nyarn add @gammarers/aws-budgets-notification\n```\n\n### Python\n\n```shell\npip install gammarers.aws-budgets-notification\n```\n\n### C# / .NET\n\n```shell\ndotnet add package Gammarers.CDK.AWS.BudgetNotification\n```\n\n## Example\n\n```python\nimport { BudgetsNotification } from '@gammarers/aws-budgets-notification';\n\nnew BudgetsNotification(stack, 'BudgetsNotification', {\n  slackWorkspaceId: 'T0XXXX111', // already AWS account linked your Slack.\n  slackChannelId: 'XXXXXXXX', // already created your slack channel.\n  budgetLimitAmount: 50,\n  // optional linked account list\n  linkedAccounts: [\n    '111111111111',\n    '222222222222',\n  ],\n});\n```\n\n![example notification](./docs/slack-notification-image.png)\n\n## License\n\nThis project is licensed under the Apache-2.0 License.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "AWS Budgets Notification",
    "version": "1.2.63",
    "project_urls": {
        "Homepage": "https://github.com/gammarers/aws-budgets-notification.git",
        "Source": "https://github.com/gammarers/aws-budgets-notification.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27d4950132417bee3bdc2e8f2dd58459cfdf8cc0af065f3f30dc34e22192c934",
                "md5": "dc6b3e9a684b18fcc0f87c5dfdea99f9",
                "sha256": "c6c8725a38f8947f7ef1c233d2e4fbaa496efd8861d12ea7bd3e13d03badd356"
            },
            "downloads": -1,
            "filename": "gammarers_aws_budgets_notification-1.2.63-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dc6b3e9a684b18fcc0f87c5dfdea99f9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.9",
            "size": 84421,
            "upload_time": "2025-08-06T19:22:04",
            "upload_time_iso_8601": "2025-08-06T19:22:04.047723Z",
            "url": "https://files.pythonhosted.org/packages/27/d4/950132417bee3bdc2e8f2dd58459cfdf8cc0af065f3f30dc34e22192c934/gammarers_aws_budgets_notification-1.2.63-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e76afb92c7e3bced5945dbefdb5f6e0a7a8588b5a098435283d4074f8100834",
                "md5": "d67df218b517360cc6f9f94e7f0e808e",
                "sha256": "fd20eaff2ea8beea02f7e6d5f1dc8f74c51660dd2e3a08be1bba121f56382e76"
            },
            "downloads": -1,
            "filename": "gammarers_aws_budgets_notification-1.2.63.tar.gz",
            "has_sig": false,
            "md5_digest": "d67df218b517360cc6f9f94e7f0e808e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.9",
            "size": 85619,
            "upload_time": "2025-08-06T19:22:05",
            "upload_time_iso_8601": "2025-08-06T19:22:05.018658Z",
            "url": "https://files.pythonhosted.org/packages/0e/76/afb92c7e3bced5945dbefdb5f6e0a7a8588b5a098435283d4074f8100834/gammarers_aws_budgets_notification-1.2.63.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-06 19:22:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gammarers",
    "github_project": "aws-budgets-notification",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gammarers.aws-budgets-notification"
}
        
Elapsed time: 0.47717s