Updates the resource permissions for a template.
quicksight_update_template_permissions(AwsAccountId, TemplateId,
GrantPermissions, RevokePermissions)
A list with the following syntax:
list(
TemplateId = "string",
TemplateArn = "string",
Permissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
),
RequestId = "string",
Status = 123
)
[required] The ID of the AWS account that contains the template.
[required] The ID for the template.
A list of resource permissions to be granted on the template.
A list of resource permissions to be revoked from the template.
svc$update_template_permissions(
AwsAccountId = "string",
TemplateId = "string",
GrantPermissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
),
RevokePermissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
)
)