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¶
cloudformation_list_generated_templates(NextToken, MaxResults)
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 |
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"
)
Request syntax¶
svc$list_generated_templates(
NextToken = "string",
MaxResults = 123
)