import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of the AWS::QuickSight::Analysis Resource Type. */ export declare function getAnalysis(args: GetAnalysisArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAnalysisArgs { /** * The ID for the analysis that you're creating. This ID displays in the URL of the analysis. */ analysisId: string; /** * The ID of the AWS account where you are creating an analysis. */ awsAccountId: string; } export interface GetAnalysisResult { /** *

The Amazon Resource Name (ARN) of the analysis.

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

The time that the analysis was created.

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

The ARNs of the datasets of the analysis.

*/ readonly dataSetArns?: string[]; /** *

Errors associated with the analysis.

*/ readonly errors?: outputs.quicksight.AnalysisError[]; /** *

The time that the analysis was last updated.

*/ readonly lastUpdatedTime?: string; /** *

The descriptive name of the analysis.

*/ readonly name?: string; /** * A structure that describes the principals and the resource-level permissions on an analysis. You can use the `Permissions` structure to grant permissions by providing a list of AWS Identity and Access Management (IAM) action information for each principal listed by Amazon Resource Name (ARN). * * To specify no permissions, omit `Permissions` . */ readonly permissions?: outputs.quicksight.AnalysisResourcePermission[]; /** *

A list of the associated sheets with the unique identifier and name of each sheet.

*/ readonly sheets?: outputs.quicksight.AnalysisSheet[]; /** * Contains a map of the key-value pairs for the resource tag or tags assigned to the analysis. */ readonly tags?: outputs.Tag[]; /** *

The ARN of the theme of the analysis.

*/ readonly themeArn?: string; } /** * Definition of the AWS::QuickSight::Analysis Resource Type. */ export declare function getAnalysisOutput(args: GetAnalysisOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAnalysisOutputArgs { /** * The ID for the analysis that you're creating. This ID displays in the URL of the analysis. */ analysisId: pulumi.Input; /** * The ID of the AWS account where you are creating an analysis. */ awsAccountId: pulumi.Input; }