Learn R Programming

paws.analytics (version 0.1.7)

quicksight_update_template: Updates a template from an existing Amazon QuickSight analysis or another template

Description

Updates a template from an existing Amazon QuickSight analysis or another template.

Usage

quicksight_update_template(AwsAccountId, TemplateId, SourceEntity,
  VersionDescription, Name)

Arguments

AwsAccountId

[required] The ID of the AWS account that contains the template that you\'re updating.

TemplateId

[required] The ID for the template.

SourceEntity

[required] The source QuickSight entity from which this template is being updated. You can currently update templates from an Analysis or another template.

VersionDescription

A description of the current template version that is being updated. Every time you call UpdateTemplate, you create a new version of the template. Each version of the template maintains a description of the version in the VersionDescription field.

Name

The name for the template.

Request syntax

svc$update_template(
  AwsAccountId = "string",
  TemplateId = "string",
  SourceEntity = list(
    SourceAnalysis = list(
      Arn = "string",
      DataSetReferences = list(
        list(
          DataSetPlaceholder = "string",
          DataSetArn = "string"
        )
      )
    ),
    SourceTemplate = list(
      Arn = "string"
    )
  ),
  VersionDescription = "string",
  Name = "string"
)