Please enable JavaScript.
Coggle requires JavaScript to display documents.
M4 demo - Coggle Diagram
M4 demo
-
-
structure
AWSTemplateFormatVersion: 'version date' (optional) # version of the CloudFormation template. Only accepted value is '2010-09-09'
-
Metadata: 'template metadata' (optional) # objects that provide additional information about the template
-
-
Example, in AWS console you can improve the experience of users deploying your templates by specify how to order, label and group parameters. This can be done with the AWS::CloudFormation::Interface key.
-
Rules: 'set of rules' (optional) # a set of rules to validate the parameters provided at deployment/update
-
Conditions: 'set of conditions' (optional) # conditions that control whether certain resources are created
-
-
-
Outputs: 'set of outputs' (optional) # values that are returned whenever you view your stack's properties
-
-
-