@gammarers/aws-codesuite-state-change-detection-event-rules
TypeScript icon, indicating that this package has built-in type declarations

2.0.3 • Public • Published

AWS CodeSuite State Change Detection Event Rule

GitHub npm (scoped) GitHub Workflow Status (branch) GitHub release (latest SemVer)

View on Construct Hub

This an AWS CodePipeline execution state change detection event rule

Install

TypeScript

install by npm

npm install @gammarers/aws-codesuite-state-change-detection-event-rules

install by yarn

yarn add @gammarers/aws-codesuite-state-change-detection-event-rules

install by pnpm

pnpm add @gammarers/aws-codesuite-state-change-detection-event-rules

install by bun

bun add @gammarers/aws-codesuite-state-change-detection-event-rules

Example

import { CodePipelineExecutionStateChangeDetectionEventRule } from '@gammarers/aws-codesuite-state-change-detection-event-rules';

const fn = new lambda.Function(this, 'MyFunc', {
  runtime: lambda.Runtime.NODEJS_LATEST,
  handler: 'index.handler',
  code: lambda.Code.fromInline(`exports.handler = handler.toString()`),
});

const rule = new CodePipelineExecutionStateChangeDetectionEventRule(stack, 'CodePipelineStateChangeDetectionEventRule', {
  ruleName: 'example-codepipeline-state-change-detection-event-rules',
  targets: new targets.LambdaFunction(fn),
});

License

This project is licensed under the Apache-2.0 License.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.0.3
58latest

Version History

VersionDownloads (Last 7 Days)Published
2.0.3
58
2.0.2
54
2.0.1
3
2.0.0
4

Package Sidebar

Install

npm i @gammarers/aws-codesuite-state-change-detection-event-rules

Weekly Downloads

72

Version

2.0.3

License

Apache-2.0

Unpacked Size

150 kB

Total Files

9

Last publish

Collaborators

  • yicr