Learn R Programming

paws.analytics (version 0.1.6)

quicksight_update_template_permissions: Updates the resource permissions for a template

Description

Updates the resource permissions for a template.

Usage

quicksight_update_template_permissions(AwsAccountId, TemplateId,
  GrantPermissions, RevokePermissions)

Arguments

AwsAccountId

[required] The ID of the AWS account that contains the template.

TemplateId

[required] The ID for the template.

GrantPermissions

A list of resource permissions to be granted on the template.

RevokePermissions

A list of resource permissions to be revoked from the template.

Request syntax

svc$update_template_permissions(
  AwsAccountId = "string",
  TemplateId = "string",
  GrantPermissions = list(
    list(
      Principal = "string",
      Actions = list(
        "string"
      )
    )
  ),
  RevokePermissions = list(
    list(
      Principal = "string",
      Actions = list(
        "string"
      )
    )
  )
)