Skip to content

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 NextToken value that you can use for the NextToken parameter to get the next set of results. By default the list_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"
)

Request syntax

svc$list_generated_templates(
  NextToken = "string",
  MaxResults = 123
)

Examples

## Not run: 
# This example lists the generated templates.
svc$list_generated_templates()

## End(Not run)