amplify-build-notification-construct
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Amplify Build Notification Construct

This package vends an L3 CDK Construct that enables notifications to Slack for ther build result from AWS Amplify Console.

Examples

Enables build notifications for all Amplify apps with default settings

In this example, you will create a stack that notifies all Amplify app jobs.

import { App, Stack } from "aws-cdk-lib";
import { Construct } from "constructs";
import { AmplifyBuildNotification } from "amplify-build-notification-construct";

const app = new App();
const stack = new Stack(app, 'AmplifyBuildNotificationStack');

new AmplifyBuildNotification(
  stack,
  "AmplifyBuildNotification",
  {
    slackWorkspaceId: "TXXXXXXX", // Slack Workspace's ID
    slackChannelId: "CXXXXXXX", // Slack Channel ID
  }
);

Enable build notifications for the specified Amplify app with default settings.

In this example, you will create a stack that notifies jobs for a specified app and branch.

import { App, Stack } from "aws-cdk-lib";
import { Construct } from "constructs";
import { AmplifyBuildNotification } from "amplify-build-notification-construct";

const app = new App();
const stack = new Stack(app, 'AmplifyBuildNotificationStack');

new AmplifyBuildNotification(
  stack,
  "AmplifyBuildNotification",
  {
    slackWorkspaceId: "TXXXXXXX",
    slackChannelId: "CXXXXXXX",
    conditions: {
      appId: "<Amplify app's ID>",
      branchName: "main"
    }
  }
);

Enable build notifications for the specified Amplify app with default settings.

In this example, you will create a stack that only notifies jobs with a FAILED status.

import { App, Stack } from "aws-cdk-lib";
import { Construct } from "constructs";
import { AmplifyBuildNotification } from "amplify-build-notification-construct";

const app = new App();
const stack = new Stack(app, 'AmplifyBuildNotificationStack');

new AmplifyBuildNotification(
  stack,
  "AmplifyBuildNotification",
  {
    slackWorkspaceId: "TXXXXXXX",
    slackChannelId: "CXXXXXXX",
    conditions: {
      jobStatus: ["FAILED"]
    }
  }
);

Readme

Keywords

none

Package Sidebar

Install

npm i amplify-build-notification-construct

Weekly Downloads

2

Version

0.1.0

License

Apache-2.0

Unpacked Size

18.4 kB

Total Files

10

Last publish

Collaborators

  • fossamagna