使用Azure Data Factory从私有s3实现复制数据

时间:2018-05-24 07:44:09

标签: azure amazon-s3 azure-data-factory azure-data-factory-2

我正在考虑使用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"
    }
}

但我没有看到在文档中设置不同主机的属性。

我的问题是,这有可能吗?

0 个答案:

没有答案