UNPKG

@mapbox/cloudfriend

Version:

Helper functions for assembling CloudFormation templates in JavaScript

39 lines 915 B
{ "AWSTemplateFormatVersion": "2010-09-09", "Metadata": {}, "Parameters": {}, "Rules": {}, "Mappings": {}, "Conditions": {}, "Resources": { "MyTable": { "Type": "AWS::Glue::Table", "Properties": { "CatalogId": "1234", "DatabaseName": "my_database", "Name": "my_table", "OpenTableFormatInput": { "IcebergInput": { "MetadataOperation": "CREATE", "Version": "2", "IcebergTableInput": { "Location": "s3://fake/location", "Schema": { "Type": "struct", "Fields": [ { "Name": "column", "Type": "string", "Id": 1, "Required": true } ] } } } } } } }, "Outputs": {} }