@Stability(value=Stable)
See: Description
| Interface | Description |
|---|---|
| CfnEventBusPolicy.ConditionProperty | |
| CfnEventBusPolicyProps |
Properties for defining a `AWS::Events::EventBusPolicy`.
|
| CfnEventBusProps |
Properties for defining a `AWS::Events::EventBus`.
|
| CfnRule.AwsVpcConfigurationProperty | |
| CfnRule.BatchArrayPropertiesProperty | |
| CfnRule.BatchParametersProperty | |
| CfnRule.BatchRetryStrategyProperty | |
| CfnRule.EcsParametersProperty | |
| CfnRule.InputTransformerProperty | |
| CfnRule.KinesisParametersProperty | |
| CfnRule.NetworkConfigurationProperty | |
| CfnRule.RunCommandParametersProperty | |
| CfnRule.RunCommandTargetProperty | |
| CfnRule.SqsParametersProperty | |
| CfnRule.TargetProperty | |
| CfnRuleProps |
Properties for defining a `AWS::Events::Rule`.
|
| CronOptions |
Options to configure a cron expression.
|
| EventBusAttributes |
Interface with properties necessary to import a reusable EventBus.
|
| EventBusProps |
Properties to define an event bus.
|
| EventPattern |
Events in Amazon CloudWatch Events are represented as JSON objects.
|
| IEventBus |
Interface which all EventBus based classes MUST implement.
|
| IRule | |
| IRuleTarget |
An abstract target for EventRules.
|
| OnEventOptions |
Standard set of options for `onXxx` event handlers on construct.
|
| RuleProps | |
| RuleTargetConfig |
Properties for an event rule target.
|
| RuleTargetInputProperties |
The input properties for an event target.
|
---
Amazon CloudWatch Events delivers a near real-time stream of system events that describe changes in AWS resources. For example, an AWS CodePipeline emits the State Change event when the pipeline changes it's state.
The Rule construct defines a CloudWatch events rule which monitors an
event based on an event
pattern
and invoke event targets when the pattern is matched against a triggered
event. Event targets are objects that implement the IRuleTarget interface.
Normally, you will use one of the source.onXxx(name[, target[, options]]) -> Rule methods on the event source to define an event rule associated with
the specific activity. You can targets either via props, or add targets using
rule.addTarget.
For example, to define an rule that triggers a CodeBuild project build when a commit is pushed to the "master" branch of a CodeCommit repository:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
var onCommitRule = repo.onCommit("OnCommit", Map.of(
"target", new CodeBuildProject(project),
"branches", asList("master")));
You can add additional targets, with optional input
transformer
using eventRule.addTarget(target[, input]). For example, we can add a SNS
topic target which formats a human-readable message for the commit.
For example, this adds an SNS topic as a target:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
onCommitRule.addTarget(SnsTopic.Builder.create(topic)
.message(events.RuleTargetInput.fromText("A commit was pushed to the repository " + codecommit.ReferenceEvent.repositoryName + " on branch " + codecommit.ReferenceEvent.referenceName))
.build());
You can configure a Rule to run on a schedule (cron or rate).
The following example runs a task every day at 4am:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
import software.amazon.awscdk.services.events.Rule;
import software.amazon.awscdk.services.events.Schedule;
import software.amazon.awscdk.services.events.targets.EcsTask;
EcsTask ecsTaskTarget = new EcsTask(new EcsTaskProps().cluster(cluster).taskDefinition(taskDefinition));
new Rule(this, "ScheduleRule", new RuleProps()
.schedule(Schedule.cron(new CronOptions().minute("0").hour("4")))
.targets(asList(ecsTaskTarget)));
More details in ScheduledEvents documentation page.
The @aws-cdk/aws-events-targets module includes classes that implement the IRuleTarget
interface for various AWS services.
The following targets are supported:
targets.CodeBuildProject: Start an AWS CodeBuild buildtargets.CodePipeline: Start an AWS CodePipeline pipeline executiontargets.EcsTask: Start a task on an Amazon ECS clustertargets.LambdaFunction: Invoke an AWS Lambda functiontargets.SnsTopic: Publish into an SNS topictargets.SqsQueue: Send a message to an Amazon SQS Queuetargets.SfnStateMachine: Trigger an AWS Step Functions state machinetargets.BatchJob: Queue an AWS Batch Jobtargets.AwsApi: Make an AWS API call
It's possible to have the source of the event and a target in separate AWS accounts:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
import software.amazon.awscdk.core.App;
import software.amazon.awscdk.core.Stack;
import software.amazon.awscdk.services.codebuild.*;
import software.amazon.awscdk.services.codecommit.*;
import software.amazon.awscdk.services.events.targets.*;
App app = new App();
Stack stack1 = new Stack(app, "Stack1", new StackProps().env(new Environment().account(account1).region("us-east-1")));
Repository repo = new Repository(stack1, "Repository", new RepositoryProps());
Stack stack2 = new Stack(app, "Stack2", new StackProps().env(new Environment().account(account2).region("us-east-1")));
Project project = new Project(stack2, "Project", new ProjectProps());
repo.onCommit("OnCommit", new OnCommitOptions()
.target(new CodeBuildProject(project)));
In this situation, the CDK will wire the 2 accounts together:
Note: while events can span multiple accounts, they cannot span different regions (that is a CloudWatch, not CDK, limitation).
For more information, see the AWS documentation on cross-account events.
Copyright © 2020. All rights reserved.