Skip to content

Commit ef25ffc

Browse files
authored
Merge pull request #280785 from Clare-Zheng82/0712-Deprecate_AWS_Market
[Doc update] Deprecate Amazon Marketplace Web Service
2 parents 18b4ff8 + 2971d63 commit ef25ffc

File tree

6 files changed

+14
-176
lines changed

6 files changed

+14
-176
lines changed

articles/data-factory/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ items:
369369
items:
370370
- name: Connector overview
371371
href: connector-overview.md
372-
- name: Amazon Marketplace Web Service
372+
- name: Amazon Marketplace Web Service (Deprecated)
373373
href: connector-amazon-marketplace-web-service.md
374374
- name: Amazon RDS for Oracle
375375
href: connector-amazon-rds-for-oracle.md

articles/data-factory/connector-amazon-marketplace-web-service.md

Lines changed: 6 additions & 168 deletions
Original file line numberDiff line numberDiff line change
@@ -8,180 +8,18 @@ ms.topic: conceptual
88
ms.author: jianleishen
99
author: jianleishen
1010
ms.custom: synapse
11-
ms.date: 10/20/2023
11+
ms.date: 07/12/2024
1212
---
1313

14-
# Copy data from Amazon Marketplace Web Service using Azure Data Factory or Synapse Analytics
14+
# Copy data from Amazon Marketplace Web Service using Azure Data Factory or Synapse Analytics (Deprecated)
1515

1616
[!INCLUDE[appliesto-adf-asa-md](includes/appliesto-adf-asa-md.md)]
1717

18-
This article outlines how to use the Copy Activity in an Azure Data Factory or Synapse Analytics pipeline to copy data from Amazon Marketplace Web Service. It builds on the [copy activity overview](copy-activity-overview.md) article that presents a general overview of copy activity.
18+
## Deprecation
1919

20-
## Supported capabilities
20+
>[!Note]
21+
>This connector is deprecated because Amazon Marketplace Web Service is no longer available since **March 31, 2024**. For more information, see [Amazon Marketplace Web Service website](https://docs.developer.amazonservices.com/en_US/dev_guide/index.html).
2122
22-
This Amazon Marketplace Web Service connector is supported for the following capabilities:
23-
24-
| Supported capabilities|IR |
25-
|---------| --------|
26-
|[Copy activity](copy-activity-overview.md) (source/-)|① ②|
27-
|[Lookup activity](control-flow-lookup-activity.md)|① ②|
28-
29-
*① Azure integration runtime ② Self-hosted integration runtime*
30-
31-
For a list of data stores that are supported as sources/sinks, see the [Supported data stores](connector-overview.md#supported-data-stores) table.
32-
33-
The service provides a built-in driver to enable connectivity, therefore you don't need to manually install any driver using this connector.
34-
35-
## Getting started
36-
37-
[!INCLUDE [data-factory-v2-connector-get-started](includes/data-factory-v2-connector-get-started.md)]
38-
39-
## Create a linked service to Amazon Marketplace Web Service using UI
40-
41-
Use the following steps to create a linked service to Amazon Marketplace Web Service in the Azure portal UI.
42-
43-
1. Browse to the Manage tab in your Azure Data Factory or Synapse workspace and select Linked Services, then click New:
44-
45-
# [Azure Data Factory](#tab/data-factory)
46-
47-
:::image type="content" source="media/doc-common-process/new-linked-service.png" alt-text="Screenshot of creating a new linked service with Azure Data Factory UI.":::
48-
49-
# [Azure Synapse](#tab/synapse-analytics)
50-
51-
:::image type="content" source="media/doc-common-process/new-linked-service-synapse.png" alt-text="Screenshot of creating a new linked service with Azure Synapse UI.":::
52-
53-
2. Search for Amazon and select the Amazon Marketplace Web Service connector.
54-
55-
:::image type="content" source="media/connector-amazon-marketplace-web-service/amazon-marketplace-web-service-connector.png" alt-text="Screenshot of the Amazon Marketplace Web Service connector.":::
56-
57-
58-
1. Configure the service details, test the connection, and create the new linked service.
59-
60-
:::image type="content" source="media/connector-amazon-marketplace-web-service/configure-amazon-marketplace-web-service-linked-service.png" alt-text="Screenshot of linked service configuration for Amazon Marketplace Web Service.":::
61-
62-
## Connector configuration details
63-
64-
The following sections provide details about properties that are used to define Data Factory entities specific to Amazon Marketplace Web Service connector.
65-
66-
## Linked service properties
67-
68-
The following properties are supported for Amazon Marketplace Web Service linked service:
69-
70-
| Property | Description | Required |
71-
|:--- |:--- |:--- |
72-
| type | The type property must be set to: **AmazonMWS** | Yes |
73-
| endpoint | The endpoint of the Amazon MWS Server (that is, mws.amazonservices.com) | Yes |
74-
| marketplaceID | The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (`,`). (that is, A2EUQ1WTGCTBG2) | Yes |
75-
| sellerID | The Amazon seller ID. | Yes |
76-
| mwsAuthToken | The Amazon MWS authentication token. Mark this field as a SecureString to store it securely, or [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). | Yes |
77-
| accessKeyId | The access key ID used to access data. | Yes |
78-
| secretKey | The secret key used to access data. Mark this field as a SecureString to store it securely, or [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). | Yes |
79-
| useEncryptedEndpoints | Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. | No |
80-
| useHostVerification | Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over TLS. The default value is true. | No |
81-
| usePeerVerification | Specifies whether to verify the identity of the server when connecting over TLS. The default value is true. | No |
82-
83-
**Example:**
84-
85-
```json
86-
{
87-
"name": "AmazonMWSLinkedService",
88-
"properties": {
89-
"type": "AmazonMWS",
90-
"typeProperties": {
91-
"endpoint" : "mws.amazonservices.com",
92-
"marketplaceID" : "A2EUQ1WTGCTBG2",
93-
"sellerID" : "<sellerID>",
94-
"mwsAuthToken": {
95-
"type": "SecureString",
96-
"value": "<mwsAuthToken>"
97-
},
98-
"accessKeyId" : "<accessKeyId>",
99-
"secretKey": {
100-
"type": "SecureString",
101-
"value": "<secretKey>"
102-
}
103-
}
104-
}
105-
}
106-
```
107-
108-
## Dataset properties
109-
110-
For a full list of sections and properties available for defining datasets, see the [datasets](concepts-datasets-linked-services.md) article. This section provides a list of properties supported by Amazon Marketplace Web Service dataset.
111-
112-
To copy data from Amazon Marketplace Web Service, set the type property of the dataset to **AmazonMWSObject**. The following properties are supported:
113-
114-
| Property | Description | Required |
115-
|:--- |:--- |:--- |
116-
| type | The type property of the dataset must be set to: **AmazonMWSObject** | Yes |
117-
| tableName | Name of the table. | No (if "query" in activity source is specified) |
118-
119-
**Example**
120-
121-
```json
122-
{
123-
"name": "AmazonMWSDataset",
124-
"properties": {
125-
"type": "AmazonMWSObject",
126-
"typeProperties": {},
127-
"schema": [],
128-
"linkedServiceName": {
129-
"referenceName": "<AmazonMWS linked service name>",
130-
"type": "LinkedServiceReference"
131-
}
132-
}
133-
}
134-
135-
```
136-
137-
## Copy activity properties
138-
139-
For a full list of sections and properties available for defining activities, see the [Pipelines](concepts-pipelines-activities.md) article. This section provides a list of properties supported by Amazon Marketplace Web Service source.
140-
141-
### Amazon MWS as source
142-
143-
To copy data from Amazon Marketplace Web Service, set the source type in the copy activity to **AmazonMWSSource**. The following properties are supported in the copy activity **source** section:
144-
145-
| Property | Description | Required |
146-
|:--- |:--- |:--- |
147-
| type | The type property of the copy activity source must be set to: **AmazonMWSSource** | Yes |
148-
| query | Use the custom SQL query to read data. For example: `"SELECT * FROM Orders where Amazon_Order_Id = 'xx'"`. | No (if "tableName" in dataset is specified) |
149-
150-
**Example:**
151-
152-
```json
153-
"activities":[
154-
{
155-
"name": "CopyFromAmazonMWS",
156-
"type": "Copy",
157-
"inputs": [
158-
{
159-
"referenceName": "<AmazonMWS input dataset name>",
160-
"type": "DatasetReference"
161-
}
162-
],
163-
"outputs": [
164-
{
165-
"referenceName": "<output dataset name>",
166-
"type": "DatasetReference"
167-
}
168-
],
169-
"typeProperties": {
170-
"source": {
171-
"type": "AmazonMWSSource",
172-
"query": "SELECT * FROM Orders where Amazon_Order_Id = 'xx'"
173-
},
174-
"sink": {
175-
"type": "<sink type>"
176-
}
177-
}
178-
}
179-
]
180-
```
181-
182-
## Lookup activity properties
183-
184-
To learn details about the properties, check [Lookup activity](control-flow-lookup-activity.md).
18523

18624
## Related content
187-
For a list of data stores supported as sources and sinks by the copy activity, see [supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).
25+
For a list of data stores supported as sources and sinks by the copy activity, see [supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).

articles/data-factory/includes/data-factory-v2-connector-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: jianleishen
33
ms.service: data-factory
44
ms.topic: include
5-
ms.date: 11/21/2023
5+
ms.date: 07/12/2024
66
ms.author: jianleishen
77
---
88

@@ -72,7 +72,7 @@ ms.author: jianleishen
7272
|&nbsp; | [Generic REST](../connector-rest.md) | ✓/✓ | ✓/✓ | | | ||
7373
| **Microsoft Fabric** | [Microsoft Fabric Lakehouse](../connector-microsoft-fabric-lakehouse.md) | ✓/✓ |✓/✓ | | | ||
7474
|&nbsp; | [Microsoft Fabric Warehouse](../connector-microsoft-fabric-warehouse.md) | ✓/✓ | ✓/✓ ||| ||
75-
| **Services and apps** | [Amazon Marketplace Web Service](../connector-amazon-marketplace-web-service.md) | ✓/− | | | | ||
75+
| **Services and apps** | [Amazon Marketplace Web Service (Deprecated)](../connector-amazon-marketplace-web-service.md) | | | | | ||
7676
|&nbsp; | [Appfigures (Preview)](../connector-appfigures.md) | | ✓/- | | | | |
7777
|&nbsp; | [Asana (Preview)](../connector-asana.md) | | ✓/− | | | ||
7878
|&nbsp; | [Concur (Preview)](../connector-concur.md) | ✓/− | || | ||

articles/data-factory/includes/data-factory-v2-supported-data-stores-for-lookup-activity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: supported connectors for Lookup Activity
44
author: jianleishen
55
ms.service: data-factory
66
ms.topic: include
7-
ms.date: 10/20/2023
7+
ms.date: 07/12/2024
88
ms.author: jianleishen
99
ms.custom: include file
1010
---
@@ -70,7 +70,7 @@ ms.custom: include file
7070
| **Generic protocol** |[Generic OData](../connector-odata.md) |
7171
| &nbsp; |[Generic ODBC](../connector-odbc.md) |
7272
| &nbsp; |[SharePoint Online List](../connector-sharepoint-online-list.md) |
73-
| **Services and apps** |[Amazon Marketplace Web Service](../connector-amazon-marketplace-web-service.md) |
73+
| **Services and apps** |[Amazon Marketplace Web Service (Deprecated)](../connector-amazon-marketplace-web-service.md) |
7474
| &nbsp; |[Concur (Preview)](../connector-concur.md) |
7575
| &nbsp; |[Dataverse](../connector-dynamics-crm-office-365.md) |
7676
| &nbsp; |[Dynamics 365](../connector-dynamics-crm-office-365.md) |

articles/data-factory/includes/data-factory-v2-supported-data-stores.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: include file
44
author: jianleishen
55
ms.service: data-factory
66
ms.topic: include
7-
ms.date: 10/20/2023
7+
ms.date: 07/12/2024
88
ms.author: jianleishen
99
ms.custom: include file
1010
---
@@ -72,7 +72,7 @@ ms.custom: include file
7272
| &nbsp; |[Generic OData](../connector-odata.md) || |||
7373
| &nbsp; |[Generic ODBC](../connector-odbc.md) ||| ||
7474
| &nbsp; |[Generic REST](../connector-rest.md) |||||
75-
| **Services and apps** |[Amazon Marketplace Web Service](../connector-amazon-marketplace-web-service.md) | | || |
75+
| **Services and apps** |[Amazon Marketplace Web Service (Deprecated)](../connector-amazon-marketplace-web-service.md) | | | | |
7676
| &nbsp; |[Concur (Preview)](../connector-concur.md) || |||
7777
| &nbsp; |[Dataverse](../connector-dynamics-crm-office-365.md) |||||
7878
| &nbsp; |[Dynamics 365](../connector-dynamics-crm-office-365.md) |||||

articles/synapse-analytics/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ items:
10171017
items:
10181018
- name: Connector overview
10191019
href: ../data-factory/connector-overview.md?context=/azure/synapse-analytics/context/context&tabs=synapse-analytics
1020-
- name: Amazon Marketplace Web Service
1020+
- name: Amazon Marketplace Web Service (Deprecated)
10211021
href: ../data-factory/connector-amazon-marketplace-web-service.md?context=/azure/synapse-analytics/context/context&tabs=synapse-analytics
10221022
- name: Amazon RDS for Oracle
10231023
href: ../data-factory/connector-amazon-rds-for-oracle.md?context=/azure/synapse-analytics/context/context&tabs=synapse-analytics

0 commit comments

Comments
 (0)