AWS EventBridge can be used to push events and messages to a serverless event bus that can forward them to AWS SQS, SNS, Lambda, and other AWS services based on forwarding rules. Once the Subscription is created, an equivalent "partner event source" is created in AWS EventBridge. This event source must be associated with an event bus for the Subscription setup to be complete.

interface EventBridgeDestination {
    accountId: string;
    region: string;
    type: "EventBridge";
}

Properties

Properties

accountId: string

ID of the AWS account that receives the events.

region: string

AWS region that receives the events.

type: "EventBridge"

Generated using TypeDoc