Skip to content

Commit

Permalink
DynamoDB Table Cloud Formation Syntax
Browse files Browse the repository at this point in the history
CloudFormation DynamoDB Table resource:
* AWS::DynamoDB::Table - http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html
  • Loading branch information
Neil Ramsay committed May 27, 2015
1 parent c356121 commit d49204a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions dynamodb-table.sublime-snippet
@@ -0,0 +1,19 @@
<snippet>
<content><![CDATA[
"${1:dynamodbTable}": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [ ${2} ],
"GlobalSecondaryIndexes": [ ${3} ],
"KeySchema": [ ${4} ],
"LocalSecondaryIndexes": [ ${5} ],
"ProvisionedThroughput": { ${6} },
"TableName": "${7}"
}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>dynamodb-table</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.cloudformation</scope>
</snippet>

0 comments on commit d49204a

Please sign in to comment.