MDAA TS Docs
    Preparing search index...

    Shared folder configuration with permissions and optional nested sub-folders. Folders organize QuickSight assets (dashboards, analyses, datasets) with hierarchical structure and per-folder access control.

    Use cases: Environment-based folder hierarchy (dev/test/prod); Team workspace isolation; Asset organization

    AWS: QuickSight shared folders via custom resource

    Validation: permissions required; folders optional for nesting

    interface SharedFoldersProps {
        folders?: { [key: string]: SharedFoldersProps };
        permissions: SharedFoldersPermissionsProps[];
    }
    Index

    Properties

    folders?: { [key: string]: SharedFoldersProps }

    Nested child folders inheriting the parent's organizational context. Each child folder has its own permissions and can contain further sub-folders.

    Use cases: Working/publishing sub-folder separation; Hierarchical asset organization

    AWS: QuickSight nested shared folders

    Validation: Optional; map of folder name to SharedFoldersProps

    Permission entries controlling who can access this folder and at what level.

    Use cases: Multi-group access control; Reader/Author separation per folder

    AWS: QuickSight folder permissions

    Validation: Required; array of SharedFoldersPermissionsProps