0

我正在研究使用 azure 数据工厂从不在 Amazon 托管的 S3 存储桶中复制文件。我们当前使用的解决方案包括一些天蓝色函数、一个逻辑应用和一个 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"
    }
}

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

我的问题是,这可能吗?

4

1 回答 1

0

我认为它只是 Amazon S3 的连接器。至少从模型层来看,不同的主机没有属性。

于 2018-05-25T02:08:31.967 回答