如何在 Azure 数据工厂中定义 Table

How to define a Table in Azure Data Factory

创建 HDInsight On Demand 链接资源时,数据工厂会为 hdinsight 创建一个新容器。我想知道如何创建指向该容器的 Table?这是我的Table定义

{
"name": "AzureBlobLocation",
"properties": {
    "published": false,
    "type": "AzureBlob",
    "linkedServiceName": "AzureBlobLinkedService",
    "typeProperties": {
        "folderPath": "????/Folder1/Folder2/Output/Aggregation/",
        "format": {
            "type": "TextFormat"
        }
    },
    "availability": {
        "frequency": "Day",
        "interval": 1
    }
}
}

应该用什么代替“????”我放在那里?关键字未被接受。

我应该使用关键字 'container' 来指向工作容器。