import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of the AWS::QuickSight::Template Resource Type. */ export declare function getTemplate(args: GetTemplateArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTemplateArgs { /** * The ID for the AWS account that the group is in. You use the ID for the AWS account that contains your Amazon Quick Sight account. */ awsAccountId: string; /** * An ID for the template that you want to create. This template is unique per AWS Region ; in each AWS account. */ templateId: string; } export interface GetTemplateResult { /** *

The Amazon Resource Name (ARN) of the template.

*/ readonly arn?: string; /** *

Time when this was created.

*/ readonly createdTime?: string; /** *

Time when this was last updated.

*/ readonly lastUpdatedTime?: string; /** * A display name for the template. */ readonly name?: string; /** * A list of resource permissions to be set on the template. */ readonly permissions?: outputs.quicksight.TemplateResourcePermission[]; /** * Contains a map of the key-value pairs for the resource tag or tags assigned to the resource. */ readonly tags?: outputs.Tag[]; readonly version?: outputs.quicksight.TemplateVersion; } /** * Definition of the AWS::QuickSight::Template Resource Type. */ export declare function getTemplateOutput(args: GetTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTemplateOutputArgs { /** * The ID for the AWS account that the group is in. You use the ID for the AWS account that contains your Amazon Quick Sight account. */ awsAccountId: pulumi.Input; /** * An ID for the template that you want to create. This template is unique per AWS Region ; in each AWS account. */ templateId: pulumi.Input; }