我正在考虑使用azure数据工厂从亚马逊托管的非的S3存储桶中复制文件。我们当前使用的解决方案包括一些azure函数,逻辑应用程序和Web应用程序。使用azure数据工厂,这应该更简单,更容易维护。
我查看了可以为Amazon S3链接服务提供的属性。
"name": "AmazonS3LinkedService",
"properties": {
"type": "AmazonS3",
"typeProperties": {
"accessKeyId": "<access key id>",
"secretAccessKey": {
"type": "SecureString",
"value": "<secret access key>"
}
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
但我没有看到在文档中设置不同主机的属性。
我的问题是,这有可能吗?