Skip to content

List Template Versions

quicksight_list_template_versions R Documentation

Lists all the versions of the templates in the current Amazon QuickSight account

Description

Lists all the versions of the templates in the current Amazon QuickSight account.

Usage

quicksight_list_template_versions(AwsAccountId, TemplateId, NextToken,
  MaxResults)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the templates that you're listing.

TemplateId

[required] The ID for the template.

NextToken

The token for the next set of results, or null if there are no more results.

MaxResults

The maximum number of results to be returned per request.

Value

A list with the following syntax:

list(
  TemplateVersionSummaryList = list(
    list(
      Arn = "string",
      VersionNumber = 123,
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      Status = "CREATION_IN_PROGRESS"|"CREATION_SUCCESSFUL"|"CREATION_FAILED"|"UPDATE_IN_PROGRESS"|"UPDATE_SUCCESSFUL"|"UPDATE_FAILED"|"DELETED",
      Description = "string"
    )
  ),
  NextToken = "string",
  Status = 123,
  RequestId = "string"
)

Request syntax

svc$list_template_versions(
  AwsAccountId = "string",
  TemplateId = "string",
  NextToken = "string",
  MaxResults = 123
)