@openhi/constructs 0.0.115 → 0.0.116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -19,7 +19,7 @@ import * as ec2 from 'aws-cdk-lib/aws-ec2';
19
19
  import * as rds from 'aws-cdk-lib/aws-rds';
20
20
  import { HostedZone, HostedZoneProps, IHostedZone, HostedZoneAttributes } from 'aws-cdk-lib/aws-route53';
21
21
  import { StringParameterProps, StringParameter } from 'aws-cdk-lib/aws-ssm';
22
- import { Distribution, DistributionProps } from 'aws-cdk-lib/aws-cloudfront';
22
+ import { Distribution, DistributionProps, CachePolicyProps } from 'aws-cdk-lib/aws-cloudfront';
23
23
  import { StateMachine } from 'aws-cdk-lib/aws-stepfunctions';
24
24
  import { RenamableEntityType } from '@openhi/workflows';
25
25
  export { ControlPlaneOwningDeleteCompleteV1, ControlPlaneOwningDeleteCompleteV1Detail, ControlPlaneOwningDeleteFailedV1, ControlPlaneOwningDeleteFailedV1Detail, ControlPlaneOwningDeleteV1, ControlPlaneOwningDeleteV1Detail, ControlPlaneRenameCompleteV1, ControlPlaneRenameCompleteV1Detail, ControlPlaneRenameFailedV1, ControlPlaneRenameFailedV1Detail, ControlPlaneRenameV1, ControlPlaneRenameV1Detail, OPENHI_DATA_SOURCE, OPENHI_OPS_SOURCE, OWNING_ENTITY_TYPE, OwningEntityType, PlatformDeploymentCompletedV1, PlatformSystemDataSeededV1, RENAMABLE_ENTITY_TYPE, RenamableEntityType } from '@openhi/workflows';
@@ -123,6 +123,21 @@ interface DynamoDbStreamKinesisRecord {
123
123
  };
124
124
  }
125
125
 
126
+ /**
127
+ * @see sites/www-docs/content/packages/@openhi/constructs/components/static-hosting/static-hosting.viewer-request-handler.md
128
+ */
129
+ /**
130
+ * Hosting mode controls how path-like URIs get a default document.
131
+ *
132
+ * - `spa`: path-like URIs (e.g. `/dashboard`, `/patients/123`) rewrite to
133
+ * `/index.html` so the single-page app's root index is served and the
134
+ * client-side router handles the path.
135
+ * - `static`: path-like URIs append `/index.html` (e.g. `/docs` becomes
136
+ * `/docs/index.html`) so multi-page static sites can serve distinct
137
+ * HTML per path.
138
+ */
139
+ type HostingMode = "spa" | "static";
140
+
126
141
  /**
127
142
  * @see sites/www-docs/content/packages/@openhi/constructs/workflows/control-plane/owning-delete-cascade/events.md
128
143
  *
@@ -868,7 +883,7 @@ declare class OpenHiApp extends App {
868
883
  *
869
884
  * @public
870
885
  */
871
- type OpenHiServiceType = "auth" | "rest-api" | "data" | "global" | "graphql-api";
886
+ type OpenHiServiceType = "auth" | "rest-api" | "data" | "global" | "graphql-api" | "website";
872
887
  /**
873
888
  * Tag-key suffixes applied by every OpenHiService stack via Tags.of().
874
889
  * Full keys are composed `${appName}:${suffix}` — see {@link openHiTagKey}.
@@ -1589,6 +1604,79 @@ declare class DiscoverableStringParameter extends StringParameter {
1589
1604
  constructor(scope: Construct, id: string, props: DiscoverableStringParameterProps);
1590
1605
  }
1591
1606
 
1607
+ /**
1608
+ * @see sites/www-docs/content/packages/@openhi/constructs/components/static-hosting/static-content.md
1609
+ */
1610
+ /*******************************************************************************
1611
+ *
1612
+ * STATIC CONTENT UPLOADER
1613
+ *
1614
+ * This construct uploads a directory of content from a local location into S3.
1615
+ *
1616
+ * To support PR and branch specific builds, each S3 bucket can store content
1617
+ * for multiple domains and builds, using the following format:
1618
+ *
1619
+ * S3-bucket/<sub-domain>.<full-domain>/*
1620
+ *
1621
+ * A bucket used to store content for stage.openhi.org might have the
1622
+ * following directory structure (all in the same bucket):
1623
+ *
1624
+ * /www.stage.openhi.org/* -> serves content to www.stage.openhi.org
1625
+ * /feature-7.stage.openhi.org/* -> serves content to feature-7.stage.openhi.org
1626
+ * /pr-123.stage.openhi.org/* -> serves content to pr-123.stage.openhi.org
1627
+ *
1628
+ ******************************************************************************/
1629
+ /**
1630
+ * Props for the StaticContent construct.
1631
+ */
1632
+ interface StaticContentProps {
1633
+ /**
1634
+ * Absolute path to directory containing content for the website.
1635
+ */
1636
+ readonly contentSourceDirectory: string;
1637
+ /**
1638
+ * Directory to place content into. Should start with a slash.
1639
+ * Example: '/widget'
1640
+ *
1641
+ * @default "/"
1642
+ */
1643
+ readonly contentDestinationDirectory?: string;
1644
+ /**
1645
+ * The sub domain prefix (e.g. "feature-7"). Used as the per-branch folder
1646
+ * name in the bucket so each branch deploys to its own prefix.
1647
+ *
1648
+ * @default the current stack's branch name (kebab-cased)
1649
+ */
1650
+ readonly subDomain?: string;
1651
+ /**
1652
+ * The full domain (e.g. "stage.openhi.org"). Used together with
1653
+ * `subDomain` to form the destination prefix
1654
+ * `<sub-domain>.<full-domain>`.
1655
+ */
1656
+ readonly fullDomain: string;
1657
+ /**
1658
+ * Service type used to look up the static-hosting bucket ARN via
1659
+ * DiscoverableStringParameter.
1660
+ *
1661
+ * @default STATIC_HOSTING_SERVICE_TYPE ("website")
1662
+ */
1663
+ readonly serviceType?: string;
1664
+ }
1665
+ /**
1666
+ * Static content uploader: deploys a local directory to the static-hosting
1667
+ * S3 bucket under `<sub-domain>.<full-domain>/<dest>` so each branch
1668
+ * deploys to its own prefix without clobbering siblings. The bucket ARN is
1669
+ * looked up via DiscoverableStringParameter so the uploader can run on a
1670
+ * feature-branch stack while the bucket itself was provisioned by the
1671
+ * release-branch service stack.
1672
+ */
1673
+ declare class StaticContent extends Construct {
1674
+ constructor(scope: Construct, id: string, props: StaticContentProps);
1675
+ }
1676
+
1677
+ /**
1678
+ * @see sites/www-docs/content/packages/@openhi/constructs/components/static-hosting/static-hosting.md
1679
+ */
1592
1680
  /**
1593
1681
  * Service type for the website service. Used in SSM parameter paths and by
1594
1682
  * OpenHiWebsiteService for fromConstruct() lookups.
@@ -1603,21 +1691,61 @@ interface StaticHostingProps {
1603
1691
  */
1604
1692
  readonly bucketProps?: Omit<BucketProps, "bucketName">;
1605
1693
  /**
1606
- * Optional CloudFront distribution props. Do not enable invalidation.
1607
- * Default TTL is 10 seconds via a custom cache policy.
1694
+ * Optional CloudFront distribution props. Defaults wire a custom cache
1695
+ * policy (60s/300s with gzip+brotli), `REDIRECT_TO_HTTPS`, and
1696
+ * `ALLOW_GET_HEAD_OPTIONS` on the default behavior; overrides apply on top.
1608
1697
  */
1609
1698
  readonly distributionProps?: Omit<DistributionProps, "defaultBehavior" | "defaultRootObject">;
1699
+ /**
1700
+ * Optional cache policy overrides. Defaults: `defaultTtl=60s`, `maxTtl=300s`,
1701
+ * `minTtl=0s`, gzip+brotli enabled, no headers/cookies/query strings cached.
1702
+ */
1703
+ readonly cachePolicyProps?: Omit<CachePolicyProps, "cachePolicyName">;
1704
+ /**
1705
+ * Wildcard certificate to attach to the CloudFront distribution. When
1706
+ * supplied together with `hostedZone` and `domainNames`, CloudFront serves
1707
+ * the listed domains and Route53 ARecords are created in the zone.
1708
+ *
1709
+ * @default - no custom certificate; CloudFront default domain is served
1710
+ */
1711
+ readonly certificate?: ICertificate;
1712
+ /**
1713
+ * Hosted zone to create Route53 ARecords in. Required together with
1714
+ * `certificate` and `domainNames` to attach a custom domain.
1715
+ */
1716
+ readonly hostedZone?: IHostedZone;
1717
+ /**
1718
+ * Domain names to attach to the CloudFront distribution. Each name also
1719
+ * gets an ARecord in `hostedZone`.
1720
+ */
1721
+ readonly domainNames?: ReadonlyArray<string>;
1722
+ /**
1723
+ * Selects how path-like URIs are rewritten by the viewer-request
1724
+ * Lambda@Edge handler.
1725
+ *
1726
+ * - `spa` (default): path-like URIs rewrite to `/index.html`.
1727
+ * - `static`: path-like URIs append `/index.html`.
1728
+ *
1729
+ * @default "spa"
1730
+ */
1731
+ readonly hostingMode?: HostingMode;
1610
1732
  /**
1611
1733
  * Service type for SSM parameter paths.
1734
+ *
1612
1735
  * @default STATIC_HOSTING_SERVICE_TYPE ("website")
1613
1736
  */
1614
1737
  readonly serviceType?: string;
1738
+ /**
1739
+ * Optional human-readable description used in distribution comment and
1740
+ * SSM parameter descriptions.
1741
+ */
1742
+ readonly description?: string;
1615
1743
  }
1616
1744
  /**
1617
1745
  * Static hosting: S3 bucket (private) + CloudFront distribution with Origin
1618
- * Access Control (OAC). Stores bucket ARN and distribution ARN in SSM via
1619
- * DiscoverableStringParameter for cross-stack lookup. No cache invalidation;
1620
- * default TTL 10 seconds.
1746
+ * Access Control (OAC) + Lambda@Edge viewer-request handler. Publishes
1747
+ * bucket ARN, distribution ARN, distribution domain, and distribution ID
1748
+ * via DiscoverableStringParameter for cross-stack lookup.
1621
1749
  */
1622
1750
  declare class StaticHosting extends Construct {
1623
1751
  /**
@@ -1628,8 +1756,18 @@ declare class StaticHosting extends Construct {
1628
1756
  * SSM parameter name for the CloudFront distribution ARN.
1629
1757
  */
1630
1758
  static readonly SSM_PARAM_NAME_DISTRIBUTION_ARN = "STATIC_HOSTING_DISTRIBUTION_ARN";
1759
+ /**
1760
+ * SSM parameter name for the CloudFront distribution domain
1761
+ * (e.g. dXXXXX.cloudfront.net).
1762
+ */
1763
+ static readonly SSM_PARAM_NAME_DISTRIBUTION_DOMAIN = "STATIC_HOSTING_DISTRIBUTION_DOMAIN";
1764
+ /**
1765
+ * SSM parameter name for the CloudFront distribution ID.
1766
+ */
1767
+ static readonly SSM_PARAM_NAME_DISTRIBUTION_ID = "STATIC_HOSTING_DISTRIBUTION_ID";
1631
1768
  readonly bucket: IBucket;
1632
1769
  readonly distribution: Distribution;
1770
+ readonly viewerRequestHandler: NodejsFunction;
1633
1771
  constructor(scope: Construct, id: string, props?: StaticHostingProps);
1634
1772
  }
1635
1773
 
@@ -2406,6 +2544,141 @@ declare class OpenHiGraphqlService extends OpenHiService {
2406
2544
  protected createRootGraphqlApi(): RootGraphqlApi;
2407
2545
  }
2408
2546
 
2547
+ /**
2548
+ * @see sites/www-docs/content/packages/@openhi/constructs/services/open-hi-website-service.md
2549
+ */
2550
+ interface OpenHiWebsiteServiceProps extends OpenHiServiceProps {
2551
+ /**
2552
+ * Sub-domain prefix attached to the child zone (e.g. "www" -> "www.<zone>").
2553
+ *
2554
+ * @default "www"
2555
+ */
2556
+ readonly domainPrefix?: string;
2557
+ /**
2558
+ * Absolute path to the local directory whose contents should be uploaded
2559
+ * to the static-hosting bucket. Required.
2560
+ */
2561
+ readonly contentSourceDirectory: string;
2562
+ /**
2563
+ * Path under the per-branch destination prefix to upload into. Should start
2564
+ * with a slash.
2565
+ *
2566
+ * @default "/"
2567
+ */
2568
+ readonly contentDestinationDirectory?: string;
2569
+ /**
2570
+ * Force the `StaticHosting` infrastructure (bucket + distribution +
2571
+ * Lambda@Edge + DNS + 4 SSM params) to be created on this branch even when
2572
+ * it is not the release branch. Useful for one-off bootstraps and tests.
2573
+ *
2574
+ * When omitted, hosting infrastructure is created only on
2575
+ * `defaultReleaseBranch`. The `StaticContent` uploader is always
2576
+ * created so feature branches can publish their content under their own
2577
+ * sub-domain folder against the release-branch bucket.
2578
+ *
2579
+ * @default - true on release branch, false otherwise
2580
+ */
2581
+ readonly createHostingInfrastructure?: boolean;
2582
+ }
2583
+ /**
2584
+ * SSM parameter name suffix for the website's full domain
2585
+ * (e.g. www.example.com).
2586
+ */
2587
+ declare const SSM_PARAM_NAME_FULL_DOMAIN = "WEBSITE_FULL_DOMAIN";
2588
+ /**
2589
+ * Website service stack: composes StaticHosting (only on release-branch
2590
+ * deploys) and StaticContent (always) so feature branches can ship their
2591
+ * content to a per-branch sub-domain folder against the release-branch
2592
+ * bucket without provisioning duplicate infrastructure.
2593
+ *
2594
+ * Resources are created in protected methods; subclasses may override to
2595
+ * customize.
2596
+ */
2597
+ declare class OpenHiWebsiteService extends OpenHiService {
2598
+ static readonly SERVICE_TYPE: "website";
2599
+ /**
2600
+ * Looks up the static-hosting bucket ARN published by the release-branch
2601
+ * deploy of this service.
2602
+ */
2603
+ static bucketArnFromConstruct(scope: Construct): string;
2604
+ /**
2605
+ * Looks up the CloudFront distribution ARN published by the release-branch
2606
+ * deploy of this service.
2607
+ */
2608
+ static distributionArnFromConstruct(scope: Construct): string;
2609
+ /**
2610
+ * Looks up the CloudFront distribution domain
2611
+ * (e.g. dXXXXX.cloudfront.net) published by the release-branch deploy.
2612
+ */
2613
+ static distributionDomainFromConstruct(scope: Construct): string;
2614
+ /**
2615
+ * Looks up the CloudFront distribution ID published by the release-branch
2616
+ * deploy of this service.
2617
+ */
2618
+ static distributionIdFromConstruct(scope: Construct): string;
2619
+ /**
2620
+ * Looks up the website's full domain (e.g. www.example.com) published by
2621
+ * the release-branch deploy of this service.
2622
+ */
2623
+ static fullDomainFromConstruct(scope: Construct): string;
2624
+ get serviceType(): string;
2625
+ /** Override so this.props is typed with this service's options. */
2626
+ props: OpenHiWebsiteServiceProps;
2627
+ /**
2628
+ * Full domain served by this website (e.g. www.example.com). Derived from
2629
+ * `domainPrefix` and the child hosted zone name.
2630
+ */
2631
+ readonly fullDomain: string;
2632
+ /**
2633
+ * The hosting construct, only created on release-branch deploys (or when
2634
+ * `createHostingInfrastructure` is true).
2635
+ */
2636
+ readonly staticHosting?: StaticHosting;
2637
+ /**
2638
+ * The content uploader, always created.
2639
+ */
2640
+ readonly staticContent: StaticContent;
2641
+ constructor(ohEnv: OpenHiEnvironment, props: OpenHiWebsiteServiceProps);
2642
+ /**
2643
+ * Validates that config required for the website stack is present.
2644
+ */
2645
+ protected validateConfig(props: OpenHiWebsiteServiceProps): void;
2646
+ /**
2647
+ * Looks up the child hosted zone published by the Global service.
2648
+ * Override to customize.
2649
+ */
2650
+ protected createHostedZone(): IHostedZone;
2651
+ /**
2652
+ * Returns the wildcard certificate looked up from the Global service.
2653
+ * Override to customize.
2654
+ */
2655
+ protected createCertificate(): ICertificate;
2656
+ /**
2657
+ * Computes the full website domain from `domainPrefix` and the child
2658
+ * zone name.
2659
+ */
2660
+ protected computeFullDomain(hostedZone: IHostedZone): string;
2661
+ /**
2662
+ * Creates the StaticHosting infrastructure (bucket + distribution +
2663
+ * Lambda@Edge + 4 SSM params + DNS).
2664
+ */
2665
+ protected createStaticHosting(deps: {
2666
+ certificate: ICertificate;
2667
+ hostedZone: IHostedZone;
2668
+ }): StaticHosting;
2669
+ /**
2670
+ * Creates the SSM parameter that publishes the website's full domain.
2671
+ * Look up via {@link OpenHiWebsiteService.fullDomainFromConstruct}.
2672
+ */
2673
+ protected createFullDomainParameter(): void;
2674
+ /**
2675
+ * Creates the StaticContent uploader. Always created so feature-branch
2676
+ * deploys can publish content to their own sub-domain folder against the
2677
+ * release-branch bucket.
2678
+ */
2679
+ protected createStaticContent(): StaticContent;
2680
+ }
2681
+
2409
2682
  interface OwningDeleteCascadeLambdasProps {
2410
2683
  /** Data-store table the cascade reads (Query) and writes (DeleteItem / TransactWriteItems) against. */
2411
2684
  readonly dataStoreTable: ITable;
@@ -2590,5 +2863,5 @@ declare class RenameCascadeWorkflow extends Construct {
2590
2863
  constructor(scope: Construct, props: RenameCascadeWorkflowProps);
2591
2864
  }
2592
2865
 
2593
- export { BRIDGED_STATUSES, CLOUDFORMATION_EVENT_SOURCE, CLOUDFORMATION_STACK_STATUS_CHANGE_DETAIL_TYPE, CONTROL_EVENT_BUS_NAME_ENV_VAR, ChildHostedZone, CognitoUserPool, CognitoUserPoolClient, CognitoUserPoolDomain, CognitoUserPoolKmsKey, ControlEventBus, DATA_STORE_CHANGE_DETAIL_MAX_UTF8_BYTES, DATA_STORE_CHANGE_DETAIL_TYPE, DATA_STORE_CHANGE_EVENT_SOURCE, DEMO_DATA_PLANE_FIXTURES, DEMO_PERIOD, DEMO_TENANT_SPECS, DEMO_URN_SYSTEM, DEV_USERS, DataEventBus, DataStoreHistoricalArchive, DataStorePostgresReplica, DiscoverableStringParameter, DynamoDbDataStore, OPENHI_REPO_TAG_KEY_ENV_VAR, OPENHI_RESOURCE_URN_SYSTEM, OPENHI_TAG_KEY_PREFIX_ENV_VAR, OPENHI_TAG_SUFFIX_BRANCH_NAME, OPENHI_TAG_SUFFIX_REPO_NAME, OPENHI_TAG_SUFFIX_SERVICE_TYPE, OPENHI_TAG_SUFFIX_STAGE_TYPE, OWNING_DELETE_CASCADE_CONSUMER_NAME, OWNING_DELETE_CASCADE_DEFAULT_CONCURRENCY, OWNING_DELETE_CASCADE_STUCK_THRESHOLD_MINUTES, OWNING_DELETE_OPS_EVENT_BUS_ENV_VAR, OpenHiApp, OpenHiAuthService, OpenHiDataService, OpenHiEnvironment, OpenHiGlobalService, OpenHiGraphqlService, OpenHiRestApiService, OpenHiService, OpenHiStage, OpsEventBus, OwningDeleteCascadeLambdas, OwningDeleteCascadeWorkflow, PLACEHOLDER_TENANT_ID, PLACEHOLDER_WORKSPACE_ID, PLATFORM_DEPLOY_BRIDGE_ACTOR_SYSTEM, PLATFORM_SCOPE_TENANT_ID, POSTGRES_REPLICA_CLUSTER_ARN_SSM_NAME, POSTGRES_REPLICA_DATABASE_NAME_SSM_NAME, POSTGRES_REPLICA_SECRET_ARN_SSM_NAME, PROVISION_DEFAULT_WORKSPACE_DETAIL_TYPE, PlatformDeployBridge, PlatformDeployBridgeLambda, PostAuthenticationLambda, PostConfirmationLambda, PreTokenGenerationLambda, ProvisionDefaultWorkspaceLambda, RENAME_CASCADE_CONSUMER_NAME, RENAME_CASCADE_DEFAULT_CONCURRENCY, RENAME_CASCADE_FAILED_THRESHOLD, RENAME_CASCADE_OPS_EVENT_BUS_ENV_VAR, RENAME_CASCADE_SLOW_THRESHOLD_SECONDS, REST_API_BASE_URL_SSM_NAME, RenameCascadeLambdas, RenameCascadeWorkflow, RootGraphqlApi, RootHostedZone, RootHttpApi, RootWildcardCertificate, SEED_DEMO_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_ACTOR_SYSTEM, SEED_SYSTEM_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_CONTROL_BUS_ENV_VAR, STATIC_HOSTING_SERVICE_TYPE, SeedDemoDataLambda, SeedDemoDataWorkflow, SeedSystemDataLambda, SeedSystemDataWorkflow, StaticHosting, USER_ONBOARDING_EVENT_SOURCE, UserOnboardingWorkflow, WorkflowDedupConsumerNameInvalidError, WorkflowDedupTable, WorkflowDedupTableDuplicateError, buildFhirCurrentResourceChangeDetail, buildProvisionDefaultWorkspaceRequestedDetail, demoMembershipId, demoRoleAssignmentId, demoRolesForUserInTenant, demoScenarioIdentifier, getDynamoDbDataStoreTableName, getPostgresReplicaSchemaName, getWorkflowDedupTableName, openHiTagKey, openhiResourceIdentifier };
2594
- export type { BridgedStatus, BuildParameterNameProps, CascadeChunkInput, CascadeFinalizeInput, CascadeFinalizeOutput, CascadeListInput, CascadeListOutput, ChildHostedZoneProps, CloudFormationStackStatusChangeDetail, DataStoreHistoricalArchiveProps, DataStorePostgresReplicaProps, DemoDevUser, DemoTenantSpec, DemoWorkspaceDataPlaneFixtures, DemoWorkspaceSpec, DiscoverableStringParameterProps, DynamoDbDataStoreProps, FhirCurrentResourceChangeDetail, GrantConsumerOptions, OpenHiAppProps, OpenHiAuthServiceProps, OpenHiDataServiceProps, OpenHiEnvironmentProps, OpenHiGlobalServiceProps, OpenHiGraphqlServiceProps, OpenHiRestApiServiceProps, OpenHiServiceProps, OpenHiServiceType, OpenHiStageProps, OwningDeleteCascadeLambdasProps, OwningDeleteCascadeWorkflowProps, PlatformDeployBridgeLambdaProps, PlatformDeployBridgeProps, PostConfirmationLambdaProps, PreTokenGenerationLambdaProps, ProvisionDefaultWorkspaceLambdaProps, ProvisionDefaultWorkspaceRequestedDetail, RenameCascadeChunkInput, RenameCascadeFinalizeInput, RenameCascadeFinalizeOutput, RenameCascadeLambdasProps, RenameCascadeListInput, RenameCascadeListOutput, RenameCascadeWorkflowProps, RootGraphqlApiProps, RootHttpApiProps, SeedDemoDataLambdaProps, SeedDemoDataWorkflowProps, SeedSystemDataLambdaProps, SeedSystemDataWorkflowProps, StaticHostingProps, UserOnboardingWorkflowProps, WorkflowDedupTableProps };
2866
+ export { BRIDGED_STATUSES, CLOUDFORMATION_EVENT_SOURCE, CLOUDFORMATION_STACK_STATUS_CHANGE_DETAIL_TYPE, CONTROL_EVENT_BUS_NAME_ENV_VAR, ChildHostedZone, CognitoUserPool, CognitoUserPoolClient, CognitoUserPoolDomain, CognitoUserPoolKmsKey, ControlEventBus, DATA_STORE_CHANGE_DETAIL_MAX_UTF8_BYTES, DATA_STORE_CHANGE_DETAIL_TYPE, DATA_STORE_CHANGE_EVENT_SOURCE, DEMO_DATA_PLANE_FIXTURES, DEMO_PERIOD, DEMO_TENANT_SPECS, DEMO_URN_SYSTEM, DEV_USERS, DataEventBus, DataStoreHistoricalArchive, DataStorePostgresReplica, DiscoverableStringParameter, DynamoDbDataStore, OPENHI_REPO_TAG_KEY_ENV_VAR, OPENHI_RESOURCE_URN_SYSTEM, OPENHI_TAG_KEY_PREFIX_ENV_VAR, OPENHI_TAG_SUFFIX_BRANCH_NAME, OPENHI_TAG_SUFFIX_REPO_NAME, OPENHI_TAG_SUFFIX_SERVICE_TYPE, OPENHI_TAG_SUFFIX_STAGE_TYPE, OWNING_DELETE_CASCADE_CONSUMER_NAME, OWNING_DELETE_CASCADE_DEFAULT_CONCURRENCY, OWNING_DELETE_CASCADE_STUCK_THRESHOLD_MINUTES, OWNING_DELETE_OPS_EVENT_BUS_ENV_VAR, OpenHiApp, OpenHiAuthService, OpenHiDataService, OpenHiEnvironment, OpenHiGlobalService, OpenHiGraphqlService, OpenHiRestApiService, OpenHiService, OpenHiStage, OpenHiWebsiteService, OpsEventBus, OwningDeleteCascadeLambdas, OwningDeleteCascadeWorkflow, PLACEHOLDER_TENANT_ID, PLACEHOLDER_WORKSPACE_ID, PLATFORM_DEPLOY_BRIDGE_ACTOR_SYSTEM, PLATFORM_SCOPE_TENANT_ID, POSTGRES_REPLICA_CLUSTER_ARN_SSM_NAME, POSTGRES_REPLICA_DATABASE_NAME_SSM_NAME, POSTGRES_REPLICA_SECRET_ARN_SSM_NAME, PROVISION_DEFAULT_WORKSPACE_DETAIL_TYPE, PlatformDeployBridge, PlatformDeployBridgeLambda, PostAuthenticationLambda, PostConfirmationLambda, PreTokenGenerationLambda, ProvisionDefaultWorkspaceLambda, RENAME_CASCADE_CONSUMER_NAME, RENAME_CASCADE_DEFAULT_CONCURRENCY, RENAME_CASCADE_FAILED_THRESHOLD, RENAME_CASCADE_OPS_EVENT_BUS_ENV_VAR, RENAME_CASCADE_SLOW_THRESHOLD_SECONDS, REST_API_BASE_URL_SSM_NAME, RenameCascadeLambdas, RenameCascadeWorkflow, RootGraphqlApi, RootHostedZone, RootHttpApi, RootWildcardCertificate, SEED_DEMO_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_ACTOR_SYSTEM, SEED_SYSTEM_DATA_CONSUMER_NAME, SEED_SYSTEM_DATA_CONTROL_BUS_ENV_VAR, SSM_PARAM_NAME_FULL_DOMAIN, STATIC_HOSTING_SERVICE_TYPE, SeedDemoDataLambda, SeedDemoDataWorkflow, SeedSystemDataLambda, SeedSystemDataWorkflow, StaticContent, StaticHosting, USER_ONBOARDING_EVENT_SOURCE, UserOnboardingWorkflow, WorkflowDedupConsumerNameInvalidError, WorkflowDedupTable, WorkflowDedupTableDuplicateError, buildFhirCurrentResourceChangeDetail, buildProvisionDefaultWorkspaceRequestedDetail, demoMembershipId, demoRoleAssignmentId, demoRolesForUserInTenant, demoScenarioIdentifier, getDynamoDbDataStoreTableName, getPostgresReplicaSchemaName, getWorkflowDedupTableName, openHiTagKey, openhiResourceIdentifier };
2867
+ export type { BridgedStatus, BuildParameterNameProps, CascadeChunkInput, CascadeFinalizeInput, CascadeFinalizeOutput, CascadeListInput, CascadeListOutput, ChildHostedZoneProps, CloudFormationStackStatusChangeDetail, DataStoreHistoricalArchiveProps, DataStorePostgresReplicaProps, DemoDevUser, DemoTenantSpec, DemoWorkspaceDataPlaneFixtures, DemoWorkspaceSpec, DiscoverableStringParameterProps, DynamoDbDataStoreProps, FhirCurrentResourceChangeDetail, GrantConsumerOptions, HostingMode, OpenHiAppProps, OpenHiAuthServiceProps, OpenHiDataServiceProps, OpenHiEnvironmentProps, OpenHiGlobalServiceProps, OpenHiGraphqlServiceProps, OpenHiRestApiServiceProps, OpenHiServiceProps, OpenHiServiceType, OpenHiStageProps, OpenHiWebsiteServiceProps, OwningDeleteCascadeLambdasProps, OwningDeleteCascadeWorkflowProps, PlatformDeployBridgeLambdaProps, PlatformDeployBridgeProps, PostConfirmationLambdaProps, PreTokenGenerationLambdaProps, ProvisionDefaultWorkspaceLambdaProps, ProvisionDefaultWorkspaceRequestedDetail, RenameCascadeChunkInput, RenameCascadeFinalizeInput, RenameCascadeFinalizeOutput, RenameCascadeLambdasProps, RenameCascadeListInput, RenameCascadeListOutput, RenameCascadeWorkflowProps, RootGraphqlApiProps, RootHttpApiProps, SeedDemoDataLambdaProps, SeedDemoDataWorkflowProps, SeedSystemDataLambdaProps, SeedSystemDataWorkflowProps, StaticContentProps, StaticHostingProps, UserOnboardingWorkflowProps, WorkflowDedupTableProps };