Better interface to AWS Code Pipeline
Project description
AWS CodePipeline Construct Library
This is a developer preview (public beta) module. Releases might lack important features and might have future breaking changes.
Pipeline
To construct an empty Pipeline:
import codepipeline = require('@aws-cdk/aws-codepipeline');
const pipeline = new codepipeline.Pipeline(this, 'MyFirstPipeline');
To give the Pipeline a nice, human-readable name:
const pipeline = new codepipeline.Pipeline(this, 'MyFirstPipeline', {
pipelineName: 'MyPipeline',
});
Stages
You can provide Stages when creating the Pipeline:
const pipeline = new codepipeline.Pipeline(this, 'MyFirstPipeline', {
stages: [
{
stageName: 'Source',
actions: [
// see below...
],
},
],
});
Or append a Stage to an existing Pipeline:
const sourceStage = pipeline.addStage({
stageName: 'Source',
actions: [ // optional property
// see below...
],
});
You can insert the new Stage at an arbitrary point in the Pipeline:
const someStage = pipeline.addStage({
stageName: 'SomeStage',
placement: {
// note: you can only specify one of the below properties
rightBefore: anotherStage,
justAfter: anotherStage,
atIndex: 3, // indexing starts at 0
// pipeline.stageCount returns the number of Stages currently in the Pipeline
}
});
Actions
Actions live in a separate package, @aws-cdk/aws-codepipeline-actions
.
To add an Action to a Stage, you can provide it when creating the Stage,
in the actions
property,
or you can use the IStage.addAction()
method to mutate an existing Stage:
sourceStage.addAction(someAction);
Cross-region CodePipelines
You can also use the cross-region feature to deploy resources (currently, only CloudFormation Stacks are supported) into a different region than your Pipeline is in.
It works like this:
const pipeline = new codepipeline.Pipeline(this, 'MyFirstPipeline', {
// ...
crossRegionReplicationBuckets: {
// note that a physical name of the replication Bucket must be known at synthesis time
'us-west-1': s3.Bucket.fromBucketName(this, 'UsWest1ReplicationBucket',
'my-us-west-1-replication-bucket'),
},
});
// later in the code...
new codepipeline_actions.CloudFormationCreateUpdateStackAction({
actionName: 'CFN_US_West_1',
// ...
region: 'us-west-1',
});
This way, the CFN_US_West_1
Action will operate in the us-west-1
region,
regardless of which region your Pipeline is in.
If you don't provide a bucket for a region (other than the Pipeline's region)
that you're using for an Action,
there will be a new Stack, called <nameOfYourPipelineStack>-support-<region>
,
defined for you, containing a replication Bucket.
This new Stack will depend on your Pipeline Stack,
so deploying the Pipeline Stack will deploy the support Stack(s) first.
Example:
$ cdk ls
MyMainStack
MyMainStack-support-us-west-1
$ cdk deploy MyMainStack
# output of cdk deploy here...
See the AWS docs here for more information on cross-region CodePipelines.
Events
Using a pipeline as an event target
A pipeline can be used as a target for a CloudWatch event rule:
// kick off the pipeline every day
const rule = new EventRule(this, 'Daily', { scheduleExpression: 'rate(1 day)' });
rule.addTarget(pipeline);
When a pipeline is used as an event target, the "codepipeline:StartPipelineExecution" permission is granted to the AWS CloudWatch Events service.
Event sources
Pipelines emit CloudWatch events. To define event rules for events emitted by
the pipeline, stages or action, use the onXxx
methods on the respective
construct:
myPipeline.onStateChange('MyPipelineStateChage', target);
myStage.onStateChange('MyStageStateChange', target);
myAction.onStateChange('MyActioStateChange', target);
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-codepipeline-0.39.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07cf3cda3ec935bf47694ee9b2354e1b584c98c682edd08f495e86eb55ea5b8c |
|
MD5 | cf32a815f862d9b8cbb184e00d7c1419 |
|
BLAKE2b-256 | 9b0e0e102b9a29973da7abb074992865f3db5c64c03833ee5408f2ee6115c85c |
Hashes for aws_cdk.aws_codepipeline-0.39.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9fea6834949f2d18b57f0e56c65046f5c8f0f22f617af9ce55788cd6febcb6f |
|
MD5 | 1a92a2cd70bd613b3acfcaebcebed398 |
|
BLAKE2b-256 | 5e346bbbbb9107201e1415069b16d76028ad611c64f9255129ff8dcc54b43a7e |