Cloudformation to Update Existing AWS Glue Crawler for DocumentDB Collections

0

I'm trying to update an existing AWS Glue Crawler for a DocumentDB instance. Given that it won't take a wildcard to add all the collections to the crawler I'm looking for an easy way to add several collections to the crawler via Cloudformation.

I'm running into errors trying to get the syntax built out for this. This is what I have thus far and its not working:

"Resources":
  "UpdateCrawler":
    "Type": AWS::Glue::Crawler
    "Properties": {
      "Name": testDB
      "MongoDBTarget":
          "Database": testDB      
      "Update":
        "AddDatasources":
          - DatabaseName: testDB
            "Tables":
              - TableName: testDB/CustomerOrders
              - TableName: testDB/ShippingInformation

"Outputs":
  "CrawlerArn":
    "Value": !Ref UpdateCrawler
    }
texnoob
已提问 10 个月前42 查看次数
没有答案

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则