Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 9, 2022 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/85c66b4be4293f9b2d699fc9b6000cfc to your computer and use it in GitHub Desktop.
Save awswithdotnet/85c66b4be4293f9b2d699fc9b6000cfc to your computer and use it in GitHub Desktop.
sqs SQSMessageProducer Program
namespace SQSProducer
{
class Program
{
static async Task Main(string[] args)
{
var message = "New Message for " + DateTime.Now.ToString();
SQSMessageProducer sQSMessageProducer = new SQSMessageProducer();
await sQSMessageProducer.Send(message);
Console.WriteLine("Message Sent: " + message);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment