New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

amplify-build-notification-construct

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amplify-build-notification-construct

AWS CDK Construct for Amplify Build Notification with AWS Chatbot

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
Source

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"]
    }
  }
);

FAQs

Package last updated on 05 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc