Difference between revisions of "AWS::CloudFormation::Stack"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
{{Draft}}
+
*JSON:
 +
<pre>{
 +
  "Type" : "AWS::CloudFormation::Stack",
 +
  "Properties" : {
 +
      "NotificationARNs" : [ String, ... ],
 +
      "Parameters" : {Key : Value, ...},
 +
      "Tags" : [ Tag, ... ],
 +
      "TemplateURL" : String,
 +
      "TimeoutInMinutes" : Integer
 +
    }
 +
}
 +
</pre>
 +
 
 +
*YAML
 +
<pre>Type: AWS::CloudFormation::Stack
 +
Properties:
 +
  NotificationARNs:
 +
    - String
 +
  Parameters:
 +
    Key : Value
 +
  Tags:
 +
    - Tag
 +
  TemplateURL: String
 +
  TimeoutInMinutes: Integer</pre>
 +
 
  
  

Revision as of 15:38, 6 August 2021

  • JSON:
{
  "Type" : "AWS::CloudFormation::Stack",
  "Properties" : {
      "NotificationARNs" : [ String, ... ],
      "Parameters" : {Key : Value, ...},
      "Tags" : [ Tag, ... ],
      "TemplateURL" : String,
      "TimeoutInMinutes" : Integer
    }
}
  • YAML
Type: AWS::CloudFormation::Stack
Properties: 
  NotificationARNs: 
    - String
  Parameters: 
    Key : Value
  Tags: 
    - Tag
  TemplateURL: String
  TimeoutInMinutes: Integer


See also

Advertising: