Skip to content

Commit 70e2148

Browse files
committed
change read me
1 parent d962a7b commit 70e2148

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -205,23 +205,23 @@ var data = amazonConnection.ProductPricing.GetCompetitivePricing(
205205

206206
//EventBridge
207207
var data = amazonConnection.Notification.CreateDestination(
208-
new Models.Notifications.CreateDestinationRequest()
208+
new Notifications.CreateDestinationRequest()
209209
{
210210
Name = "CompanyName",
211-
ResourceSpecification = new Models.Notifications.DestinationResourceSpecification()
211+
ResourceSpecification = new Notifications.DestinationResourceSpecification()
212212
{
213-
EventBridge = new Models.Notifications.EventBridgeResourceSpecification("us-east-2", "999999999")
213+
EventBridge = new Notifications.EventBridgeResourceSpecification("us-east-2", "999999999")
214214
}
215215
});
216216

217217
//SQS
218218
var dataSqs = amazonConnection.Notification.CreateDestination(
219-
new Models.Notifications.CreateDestinationRequest()
219+
new Notifications.CreateDestinationRequest()
220220
{
221221
Name = "CompanyName_AE",
222-
ResourceSpecification = new Models.Notifications.DestinationResourceSpecification
222+
ResourceSpecification = new Notifications.DestinationResourceSpecification
223223
{
224-
Sqs = new Models.Notifications.SqsResource("arn:aws:sqs:us-east-2:9999999999999:NAME")
224+
Sqs = new Notifications.SqsResource("arn:aws:sqs:us-east-2:9999999999999:NAME")
225225
}
226226
});
227227
```

0 commit comments

Comments
 (0)