Class CfnRule
- All Implemented Interfaces:
IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
Rules are enabled by default, or based on value of the state. You can disable a rule using DisableRule .
A single rule watches for events from a single event bus. Events generated by AWS services go to your account's default event bus. Events generated by SaaS partner services or applications go to the matching partner event bus. If you have custom applications or services, you can specify whether their events go to your default event bus or a custom event bus that you have created. For more information, see CreateEventBus .
If you are updating an existing rule, the rule is replaced with what you specify in this PutRule
command. If you omit arguments in PutRule
, the old values for those arguments are not kept. Instead, they are replaced with null values.
When you create or update a rule, incoming events might not immediately start matching to new or updated rules. Allow a short period of time for changes to take effect.
A rule must contain at least an EventPattern or ScheduleExpression. Rules with EventPatterns are triggered when a matching event is observed. Rules with ScheduleExpressions self-trigger based on the given schedule. A rule can have both an EventPattern and a ScheduleExpression, in which case the rule triggers on matching events as well as on a schedule.
Most services in AWS treat : or / as the same character in Amazon Resource Names (ARNs). However, EventBridge uses an exact match in event patterns and rules. Be sure to use the correct ARN characters when creating event patterns so that they match the ARN syntax in the event you want to match.
In EventBridge, it is possible to create rules that lead to infinite loops, where a rule is fired repeatedly. For example, a rule might detect that ACLs have changed on an S3 bucket, and trigger software to change them to the desired state. If the rule is not written carefully, the subsequent change to the ACLs fires the rule again, creating an infinite loop.
To prevent this, write the rules so that the triggered actions do not re-fire the same rule. For example, your rule could fire only if ACLs are found to be in a bad state, instead of after any change.
An infinite loop can quickly cause higher than expected charges. We recommend that you use budgeting, which alerts you when charges exceed your specified limit. For more information, see Managing Your Costs with Budgets .
As an aid to help you jumpstart developing CloudFormation templates, the EventBridge console enables you to create templates from the existing rules in your account. For more information, see Generating CloudFormation templates from an EventBridge rule in the Amazon EventBridge User Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.events.*; Object eventPattern; CfnRule cfnRule = CfnRule.Builder.create(this, "MyCfnRule") .description("description") .eventBusName("eventBusName") .eventPattern(eventPattern) .name("name") .roleArn("roleArn") .scheduleExpression("scheduleExpression") .state("state") .targets(List.of(TargetProperty.builder() .arn("arn") .id("id") // the properties below are optional .appSyncParameters(AppSyncParametersProperty.builder() .graphQlOperation("graphQlOperation") .build()) .batchParameters(BatchParametersProperty.builder() .jobDefinition("jobDefinition") .jobName("jobName") // the properties below are optional .arrayProperties(BatchArrayPropertiesProperty.builder() .size(123) .build()) .retryStrategy(BatchRetryStrategyProperty.builder() .attempts(123) .build()) .build()) .deadLetterConfig(DeadLetterConfigProperty.builder() .arn("arn") .build()) .ecsParameters(EcsParametersProperty.builder() .taskDefinitionArn("taskDefinitionArn") // the properties below are optional .capacityProviderStrategy(List.of(CapacityProviderStrategyItemProperty.builder() .capacityProvider("capacityProvider") // the properties below are optional .base(123) .weight(123) .build())) .enableEcsManagedTags(false) .enableExecuteCommand(false) .group("group") .launchType("launchType") .networkConfiguration(NetworkConfigurationProperty.builder() .awsVpcConfiguration(AwsVpcConfigurationProperty.builder() .subnets(List.of("subnets")) // the properties below are optional .assignPublicIp("assignPublicIp") .securityGroups(List.of("securityGroups")) .build()) .build()) .placementConstraints(List.of(PlacementConstraintProperty.builder() .expression("expression") .type("type") .build())) .placementStrategies(List.of(PlacementStrategyProperty.builder() .field("field") .type("type") .build())) .platformVersion("platformVersion") .propagateTags("propagateTags") .referenceId("referenceId") .tagList(List.of(CfnTag.builder() .key("key") .value("value") .build())) .taskCount(123) .build()) .httpParameters(HttpParametersProperty.builder() .headerParameters(Map.of( "headerParametersKey", "headerParameters")) .pathParameterValues(List.of("pathParameterValues")) .queryStringParameters(Map.of( "queryStringParametersKey", "queryStringParameters")) .build()) .input("input") .inputPath("inputPath") .inputTransformer(InputTransformerProperty.builder() .inputTemplate("inputTemplate") // the properties below are optional .inputPathsMap(Map.of( "inputPathsMapKey", "inputPathsMap")) .build()) .kinesisParameters(KinesisParametersProperty.builder() .partitionKeyPath("partitionKeyPath") .build()) .redshiftDataParameters(RedshiftDataParametersProperty.builder() .database("database") // the properties below are optional .dbUser("dbUser") .secretManagerArn("secretManagerArn") .sql("sql") .sqls(List.of("sqls")) .statementName("statementName") .withEvent(false) .build()) .retryPolicy(RetryPolicyProperty.builder() .maximumEventAgeInSeconds(123) .maximumRetryAttempts(123) .build()) .roleArn("roleArn") .runCommandParameters(RunCommandParametersProperty.builder() .runCommandTargets(List.of(RunCommandTargetProperty.builder() .key("key") .values(List.of("values")) .build())) .build()) .sageMakerPipelineParameters(SageMakerPipelineParametersProperty.builder() .pipelineParameterList(List.of(SageMakerPipelineParameterProperty.builder() .name("name") .value("value") .build())) .build()) .sqsParameters(SqsParametersProperty.builder() .messageGroupId("messageGroupId") .build()) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Contains the GraphQL operation to be parsed and executed, if the event target is an AWS AppSync API.static interface
This structure specifies the VPC subnets and security groups for the task, and whether a public IP address is to be used.static interface
The array properties for the submitted job, such as the size of the array.static interface
The custom parameters to be used when the target is an AWS Batch job.static interface
The retry strategy to use for failed jobs, if the target is an AWS Batch job.static final class
A fluent builder forCfnRule
.static interface
The details of a capacity provider strategy.static interface
Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).static interface
The custom parameters to be used when the target is an Amazon ECS task.static interface
These are custom parameter to be used when the target is an API Gateway APIs or EventBridge ApiDestinations.static interface
Contains the parameters needed for you to provide custom input to a target based on one or more pieces of data extracted from the event.static interface
This object enables you to specify a JSON path to extract from the event and use as the partition key for the Amazon Kinesis data stream, so that you can control the shard to which the event goes.static interface
This structure specifies the network configuration for an ECS task.static interface
An object representing a constraint on task placement.static interface
The task placement strategy for a task or service.static interface
These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API ExecuteStatement based on EventBridge events.static interface
ARetryPolicy
object that includes information about the retry policy settings.static interface
This parameter contains the criteria (either InstanceIds or a tag) used to specify which EC2 instances are to be sent the command.static interface
Information about the EC2 instances that are to be sent the command, specified as key-value pairs.static interface
Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.static interface
These are custom parameters to use when the target is a SageMaker Model Building Pipeline that starts based on EventBridge events.static interface
This structure includes the custom parameter to be used when the target is an SQS FIFO queue.static interface
A key-value pair associated with an ECS Target of an EventBridge rule.static interface
Targets are the resources to be invoked when a rule is triggered.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnRule
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnRule
(software.amazon.jsii.JsiiObjectRef objRef) CfnRule
(software.constructs.Construct scope, String id, CfnRuleProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe ARN of the rule, such asarn:aws:events:us-east-2:123456789012:rule/example
.The description of the rule.The name or ARN of the event bus associated with the rule.The event pattern of the rule.getName()
The name of the rule.The Amazon Resource Name (ARN) of the role that is used for target invocation.The scheduling expression.getState()
The state of the rule.Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDescription
(String value) The description of the rule.void
setEventBusName
(String value) The name or ARN of the event bus associated with the rule.void
setEventPattern
(Object value) The event pattern of the rule.void
The name of the rule.void
setRoleArn
(String value) The Amazon Resource Name (ARN) of the role that is used for target invocation.void
setScheduleExpression
(String value) The scheduling expression.void
The state of the rule.void
setTargets
(List<Object> value) Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.void
setTargets
(IResolvable value) Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnRule
protected CfnRule(software.amazon.jsii.JsiiObjectRef objRef) -
CfnRule
protected CfnRule(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnRule
@Stability(Stable) public CfnRule(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnRuleProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties.
-
CfnRule
- Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrArn
The ARN of the rule, such asarn:aws:events:us-east-2:123456789012:rule/example
. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getDescription
The description of the rule. -
setDescription
The description of the rule. -
getEventBusName
The name or ARN of the event bus associated with the rule. -
setEventBusName
The name or ARN of the event bus associated with the rule. -
getEventPattern
The event pattern of the rule. -
setEventPattern
The event pattern of the rule. -
getName
The name of the rule. -
setName
The name of the rule. -
getRoleArn
The Amazon Resource Name (ARN) of the role that is used for target invocation. -
setRoleArn
The Amazon Resource Name (ARN) of the role that is used for target invocation. -
getScheduleExpression
The scheduling expression. -
setScheduleExpression
The scheduling expression. -
getState
The state of the rule. -
setState
The state of the rule. -
getTargets
Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. -
setTargets
Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. -
setTargets
Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.
-