We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 79cf312 + 5cb5c39 commit c332681Copy full SHA for c332681
README.md
@@ -251,11 +251,11 @@ var dataSqs = amazonConnection.Notification.CreateDestination(
251
### Notifications read messages
252
```CSharp
253
254
-var SQL_URL = "https://sqs.us-east-2.amazonaws.com/9999999999999/IUSER_SQS";
+var SQS_URL = "https://sqs.us-east-2.amazonaws.com/9999999999999/IUSER_SQS";
255
ParameterMessageReceiver param = new ParameterMessageReceiver(
256
Environment.GetEnvironmentVariable("AccessKey"),
257
Environment.GetEnvironmentVariable("SecretKey"),
258
- SQL_URL, Amazon.RegionEndpoint.USEast2);
+ SQS_URL, Amazon.RegionEndpoint.USEast2);
259
260
CustomMessageReceiver messageReceiver = new CustomMessageReceiver();
261
0 commit comments