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
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
19
19
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).
21
22
22
-
This Amazon Marketplace Web Service connector is supported for the following capabilities:
## 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) |
"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).
185
23
186
24
## 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).
0 commit comments