Get Generated Template
cloudformation_get_generated_template | R Documentation |
Retrieves a generated template¶
Description¶
Retrieves a generated template. If the template is in an InProgress
or
Pending
status then the template returned will be the template when
the template was last in a Complete
status. If the template has not
yet been in a Complete
status then an empty template will be returned.
Usage¶
cloudformation_get_generated_template(Format, GeneratedTemplateName)
Arguments¶
Format |
The language to use to retrieve for the generated template. Supported values are:
|
GeneratedTemplateName |
[required] The name or Amazon Resource Name (ARN) of the
generated template. The format is |
Value¶
A list with the following syntax:
list(
Status = "CREATE_PENDING"|"UPDATE_PENDING"|"DELETE_PENDING"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"FAILED"|"COMPLETE",
TemplateBody = "string"
)
Request syntax¶
svc$get_generated_template(
Format = "JSON"|"YAML",
GeneratedTemplateName = "string"
)