You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Endpoints are attached to Azure Digital Twins using management APIs or the Azure portal. Learn more about how to attach an endpoint to Azure Digital Twins in [How-to: Manage endpoints and routes](how-to-manage-routes-apis-cli.md).
43
+
Endpoints are attached to Azure Digital Twins using management APIs or the Azure portal. Learn more about how to attach an endpoint to Azure Digital Twins in [How-to: Manage endpoints and routes](how-to-manage-routes.md).
44
44
45
45
There are many other services where you may want to ultimately direct your data, such as [Azure Storage](../storage/common/storage-introduction.md), [Azure Maps](../azure-maps/about-azure-maps.md), [Azure Data Explorer](/azure/data-explorer/data-explorer-overview), or [Time Series Insights](../time-series-insights/overview-what-is-tsi.md). To send your data to services like these, attach the destination service to an endpoint.
Copy file name to clipboardExpand all lines: articles/digital-twins/concepts-route-events.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ To define an event route, developers first must define endpoints. An **endpoint*
56
56
* Event Hub
57
57
* Service Bus
58
58
59
-
To create an endpoint, you can use the Azure Digital Twins [REST APIs, CLI commands](how-to-manage-routes-apis-cli.md#create-an-endpoint-for-azure-digital-twins), or the [Azure portal](how-to-manage-routes-portal.md#create-an-endpoint-for-azure-digital-twins).
59
+
To create an endpoint, you can use the Azure Digital Twins [REST APIs, CLI commands, or the Azure portal](how-to-manage-routes.md#create-an-endpoint-for-azure-digital-twins).
60
60
61
61
When defining an endpoint, you'll need to provide:
62
62
* The endpoint's name
@@ -72,15 +72,15 @@ The endpoint APIs that are available in control plane are:
72
72
73
73
## Create an event route
74
74
75
-
To create an event route, you can use the Azure Digital Twins [REST APIs, CLI commands](how-to-manage-routes-apis-cli.md#create-an-event-route), or the [Azure portal](how-to-manage-routes-portal.md#create-an-event-route).
75
+
To create an event route, you can use the Azure Digital Twins [REST APIs, CLI commands, or the Azure portal](how-to-manage-routes.md#create-an-event-route).
76
76
77
77
Here is an example of creating an event route within a client application, using the `CreateOrReplaceEventRouteAsync`[.NET (C#) SDK](/dotnet/api/overview/azure/digitaltwins/client?view=azure-dotnet&preserve-view=true) call:
1. First, a `DigitalTwinsEventRoute` object is created, and the constructor takes the name of an endpoint. This `endpointName` field identifies an endpoint such as an Event Hub, Event Grid, or Service Bus. These endpoints must be created in your subscription and attached to Azure Digital Twins using control plane APIs before making this registration call.
82
82
83
-
2. The event route object also has a [Filter](how-to-manage-routes-apis-cli.md#filter-events) field, which can be used to restrict the types of events that follow this route. A filter of `true` enables the route with no additional filtering (a filter of `false` disables the route).
83
+
2. The event route object also has a [Filter](how-to-manage-routes.md#filter-events) field, which can be used to restrict the types of events that follow this route. A filter of `true` enables the route with no additional filtering (a filter of `false` disables the route).
84
84
85
85
3. This event route object is then passed to `CreateOrReplaceEventRouteAsync`, along with a name for the route.
86
86
@@ -101,7 +101,7 @@ Before setting the dead-letter location, you must have a storage account with a
101
101
102
102
To learn more about SAS tokens, see: [Grant limited access to Azure Storage resources using shared access signatures (SAS)](../storage/common/storage-sas-overview.md)
103
103
104
-
To learn how to set up an endpoint with dead-lettering, see [How-to: Manage endpoints and routes in Azure Digital Twins (APIs and CLI)](how-to-manage-routes-apis-cli.md#create-an-endpoint-with-dead-lettering).
104
+
To learn how to set up an endpoint with dead-lettering, see [How-to: Manage endpoints and routes in Azure Digital Twins](how-to-manage-routes.md#create-an-endpoint-with-dead-lettering).
105
105
106
106
### Types of event messages
107
107
@@ -112,7 +112,7 @@ Different types of events in IoT Hub and Azure Digital Twins produce different t
112
112
## Next steps
113
113
114
114
See how to set up and manage an event route:
115
-
*[How-to: Manage endpoints and routes](how-to-manage-routes-apis-cli.md)
115
+
*[How-to: Manage endpoints and routes](how-to-manage-routes.md)
116
116
117
117
Or, see how to use Azure Functions to route events within Azure Digital Twins:
118
118
*[How-to: Set up an Azure function for processing data](how-to-create-azure-function.md)
0 commit comments