interface EventCommonOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Events.EventCommonOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#EventCommonOptions |
![]() | software.amazon.awscdk.services.events.EventCommonOptions |
![]() | aws_cdk.aws_events.EventCommonOptions |
![]() | aws-cdk-lib » aws_events » EventCommonOptions |
Common options for Events.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
import * as constructs from 'constructs';
declare const construct: constructs.Construct;
declare const detail: any;
const eventCommonOptions: events.EventCommonOptions = {
crossStackScope: construct,
description: 'description',
eventPattern: {
account: ['account'],
detail: {
detailKey: detail,
},
detailType: ['detailType'],
id: ['id'],
region: ['region'],
resources: ['resources'],
source: ['source'],
time: ['time'],
version: ['version'],
},
ruleName: 'ruleName',
};
Properties
Name | Type | Description |
---|---|---|
cross | Construct | The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region). |
description? | string | A description of the rule's purpose. |
event | Event | Additional restrictions for the event to route to the specified target. |
rule | string | A name for the rule. |
crossStackScope?
Type:
Construct
(optional, default: none (the main scope will be used, even for cross-stack Events))
The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region).
This helps dealing with cycles that often arise in these situations.
description?
Type:
string
(optional, default: No description)
A description of the rule's purpose.
eventPattern?
Type:
Event
(optional, default: No additional filtering based on an event pattern.)
Additional restrictions for the event to route to the specified target.
The method that generates the rule probably imposes some type of event filtering. The filtering implied by what you pass here is added on top of that filtering.
ruleName?
Type:
string
(optional, default: AWS CloudFormation generates a unique physical ID.)
A name for the rule.