Open Source .NET Framework that abstract out AWS CDK calls to EventBridge
Is there an Open Source .NET Framework that abstract out AWS CDK calls like sending message to EventBridge, logging etc...? The purpose is to focus on the business logic and not on infrastructure. MassTransit is such a framework but does not work with EventBridge.
Could you clarify what exactly you are looking to do? The existing open source AWS CDK library makes it very easy to create an EventBus in EventBridge that your application code can later use. For example, in one project I use the following to create one:
LicensingEventBus = new EventBus(this, "LicensingEvents", new EventBusProps
{
EventBusName = "LicensingEvents"
}
);
In my application code, I then use the AWS SDK for .NET to push events on to the EventBus:
_ebClient = new AmazonEventBridgeClient();
var transactionEvents = new PutEventsRequest();
var busEntry = new PutEventsRequestEntry
{
Source = this.GetType().Namespace,
EventBusName = _eventBusName,
DetailType = "transaction",
Time = DateTime.Now,
Detail = myEventJson
};
transactionEvents.Entries.Add(busEntry);
await _ebClient.PutEventsAsync(transactionEvents);
It is a noise when you use such code in the middle of business logic. These calls can be abstracted out so it will work well with business logic. nServiceBus, MassTransit are examples for libraries.
Relevant questions
Open Source .NET Framework that abstract out AWS CDK calls to EventBridge
Accepted Answerasked 3 months agoPassing CDK profile to SDK calls
asked a year agoCDK: put aws apigateway events on to default bus in EventBridge
asked 4 months agoAWS Cognito - .NET Framework
asked 21 days agoCDK: custom endpoints for Aurora cluster?
asked 6 months agoEventBridge and Message Deduplication
Accepted Answerasked 3 months agoUpdating EventBridge Target in a separate CloudFormation script
Accepted Answerasked 4 months agoenable Amazon EventBridge for s3 bucket via CDK
Accepted Answerasked 2 months agoenable eventBridge prop on S3 bucket via CDK
asked 2 months agoCreating EventBridge Bus, Lambdas and Security
Accepted Answerasked 3 months ago
Please note that AWS CDK (Cloud Development Kit) is not designed for integrating the AWS services into your applications, but it's rather an infrastructure-as-code toolkit. Did you mean AWS SDK (Software Development Kit) instead?