Interface EventBridgeDestination

All Superinterfaces:
Destination
All Known Implementing Classes:
EventBridgeDestinationImpl

public interface EventBridgeDestination extends Destination

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.


Example to create an instance using the builder pattern

     EventBridgeDestination eventBridgeDestination = EventBridgeDestination.builder()
             .region("{region}")
             .accountId("{accountId}")
             .build()