Interface AzureEventGridDestination

All Superinterfaces:
Destination
All Known Implementing Classes:
AzureEventGridDestinationImpl

public interface AzureEventGridDestination extends Destination

Azure Event Grid can be used to push messages to Azure Functions, HTTP endpoints (webhooks), and several other Azure tools. Event Grid can only be used with the CloudEventsFormat. To set up a Subscription with Azure Event Grid, first create a topic in the Azure Portal. To allow Composable Commerce to push messages to your topic, provide an access key.


Example to create an instance using the builder pattern

     AzureEventGridDestination azureEventGridDestination = AzureEventGridDestination.builder()
             .uri("{uri}")
             .accessKey("{accessKey}")
             .build()