@mapbox/cloudfriend
Version:
Helper functions for assembling CloudFormation templates in JavaScript
40 lines • 935 B
JSON
{
"AWSTemplateFormatVersion": "2010-09-09",
"Metadata": {},
"Parameters": {},
"Rules": {},
"Mappings": {},
"Conditions": {},
"Resources": {
"MyTable": {
"Type": "AWS::Glue::Table",
"Properties": {
"CatalogId": {
"Ref": "AWS::AccountId"
},
"DatabaseName": "my_database",
"TableInput": {
"Description": {
"Fn::Sub": "Created by the ${AWS::StackName} CloudFormation stack"
},
"Name": "my_table",
"PartitionKeys": [],
"StorageDescriptor": {
"Columns": [
{
"Name": "column",
"Type": "string"
}
],
"Compressed": false,
"Location": "",
"NumberOfBuckets": 0,
"SerdeInfo": {},
"StoredAsSubDirectories": true
}
}
}
}
},
"Outputs": {}
}