List Generated Templates
cloudformation_list_generated_templates | R Documentation |
Lists your generated templates in this Region¶
Description¶
Lists your generated templates in this Region.
Usage¶
Arguments¶
NextToken
A string that identifies the next page of resource scan results.
MaxResults
If the number of available results exceeds this maximum, the response includes a
NextToken
value that you can use for theNextToken
parameter to get the next set of results. By default thelist_generated_templates
API action will return at most 50 results in each response. The maximum value is 100.
Value¶
A list with the following syntax:
list(
Summaries = list(
list(
GeneratedTemplateId = "string",
GeneratedTemplateName = "string",
Status = "CREATE_PENDING"|"UPDATE_PENDING"|"DELETE_PENDING"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"FAILED"|"COMPLETE",
StatusReason = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
NumberOfResources = 123
)
),
NextToken = "string"
)