import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of the AWS::QuickSight::Analysis Resource Type. */ export declare class Analysis extends pulumi.CustomResource { /** * Get an existing Analysis resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Analysis; /** * Returns true if the given object is an instance of Analysis. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Analysis; /** * The ID for the analysis that you're creating. This ID displays in the URL of the analysis. */ readonly analysisId: pulumi.Output; /** *

The Amazon Resource Name (ARN) of the analysis.

*/ readonly arn: pulumi.Output; /** * The ID of the AWS account where you are creating an analysis. */ readonly awsAccountId: pulumi.Output; /** *

The time that the analysis was created.

*/ readonly createdTime: pulumi.Output; /** *

The ARNs of the datasets of the analysis.

*/ readonly dataSetArns: pulumi.Output; readonly definition: pulumi.Output; /** *

Errors associated with the analysis.

*/ readonly errors: pulumi.Output; readonly folderArns: pulumi.Output; /** *

The time that the analysis was last updated.

*/ readonly lastUpdatedTime: pulumi.Output; /** *

The descriptive name of the analysis.

*/ readonly name: pulumi.Output; /** * The parameter names and override values that you want to use. An analysis can have any parameter type, and some parameters might accept multiple values. */ readonly parameters: pulumi.Output; /** * 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: pulumi.Output; /** *

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

*/ readonly sheets: pulumi.Output; /** * A source entity to use for the analysis that you're creating. This metadata structure contains details that describe a source template and one or more datasets. * * Either a `SourceEntity` or a `Definition` must be provided in order for the request to be valid. */ readonly sourceEntity: pulumi.Output; /** * Status associated with the analysis. */ readonly status: pulumi.Output; /** * Contains a map of the key-value pairs for the resource tag or tags assigned to the analysis. */ readonly tags: pulumi.Output; /** *

The ARN of the theme of the analysis.

*/ readonly themeArn: pulumi.Output; /** * The option to relax the validation that is required to create and update analyses, dashboards, and templates with definition objects. When you set this value to `LENIENT` , validation is skipped for specific errors. */ readonly validationStrategy: pulumi.Output; /** * Create a Analysis resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AnalysisArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Analysis resource. */ export interface AnalysisArgs { /** * 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; definition?: pulumi.Input; /** *

Errors associated with the analysis.

*/ errors?: pulumi.Input[]>; folderArns?: pulumi.Input[]>; /** *

The descriptive name of the analysis.

*/ name?: pulumi.Input; /** * The parameter names and override values that you want to use. An analysis can have any parameter type, and some parameters might accept multiple values. */ parameters?: pulumi.Input; /** * 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` . */ permissions?: pulumi.Input[]>; /** *

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

*/ sheets?: pulumi.Input[]>; /** * A source entity to use for the analysis that you're creating. This metadata structure contains details that describe a source template and one or more datasets. * * Either a `SourceEntity` or a `Definition` must be provided in order for the request to be valid. */ sourceEntity?: pulumi.Input; /** * Status associated with the analysis. */ status?: pulumi.Input; /** * Contains a map of the key-value pairs for the resource tag or tags assigned to the analysis. */ tags?: pulumi.Input[]>; /** *

The ARN of the theme of the analysis.

*/ themeArn?: pulumi.Input; /** * The option to relax the validation that is required to create and update analyses, dashboards, and templates with definition objects. When you set this value to `LENIENT` , validation is skipped for specific errors. */ validationStrategy?: pulumi.Input; }