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::Folder Resource Type. */ export declare class Folder extends pulumi.CustomResource { /** * Get an existing Folder 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): Folder; /** * Returns true if the given object is an instance of Folder. 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 Folder; /** *

The Amazon Resource Name (ARN) for the folder.

*/ readonly arn: pulumi.Output; /** * The ID for the AWS account where you want to create the folder. */ readonly awsAccountId: pulumi.Output; /** *

The time that the folder was created.

*/ readonly createdTime: pulumi.Output; /** * The ID of the folder. */ readonly folderId: pulumi.Output; /** * The type of folder it is. */ readonly folderType: pulumi.Output; /** *

The time that the folder was last updated.

*/ readonly lastUpdatedTime: pulumi.Output; /** * A display name for the folder. */ readonly name: pulumi.Output; /** * The Amazon Resource Name (ARN) for the folder. */ readonly parentFolderArn: pulumi.Output; /** * A structure that describes the principals and the resource-level permissions of a folder. * * To specify no permissions, omit `Permissions` . */ readonly permissions: pulumi.Output; /** * The sharing scope of the folder. */ readonly sharingModel: pulumi.Output; /** * A list of tags for the folders that you want to apply overrides to. */ readonly tags: pulumi.Output; /** * Create a Folder 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?: FolderArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Folder resource. */ export interface FolderArgs { /** * The ID for the AWS account where you want to create the folder. */ awsAccountId?: pulumi.Input; /** * The ID of the folder. */ folderId?: pulumi.Input; /** * The type of folder it is. */ folderType?: pulumi.Input; /** * A display name for the folder. */ name?: pulumi.Input; /** * The Amazon Resource Name (ARN) for the folder. */ parentFolderArn?: pulumi.Input; /** * A structure that describes the principals and the resource-level permissions of a folder. * * To specify no permissions, omit `Permissions` . */ permissions?: pulumi.Input[]>; /** * The sharing scope of the folder. */ sharingModel?: pulumi.Input; /** * A list of tags for the folders that you want to apply overrides to. */ tags?: pulumi.Input[]>; }