Event Bus
This example shows a basic event bus configuration.
Event bus resource
- Bus for your application events.
- Other compute resources can subscribe to events published to the bus.
Basic example
resources:myEventBus:type: event-busproperties:# Specifies the partner event source that the new event bus will be matched with.## - Required only if you are using a partner event bus (3rd party)## - Type: string# - Required: falseeventSourceName: myEventSourceName# Enables event archivation and sets retention to provided value## - Archivation can be used to safely store and re-process past events## - Type: object# - Required: falsearchivation:# Enables event archivation## - Disabling of archive results in deletion of the archive## - Type: boolean# - Required: trueenabled: true# Configures retention period for events in this event bus## - By default event are retained indefinitely## - Type: number# - Required: falseretentionDays: 100