export declare const AccountAccessType: { readonly CURRENT_ACCOUNT: "CURRENT_ACCOUNT"; readonly ORGANIZATION: "ORGANIZATION"; }; export type AccountAccessType = (typeof AccountAccessType)[keyof typeof AccountAccessType]; export declare const ValidationExceptionReason: { readonly CANNOT_PARSE: "CANNOT_PARSE"; readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED"; readonly OTHER: "OTHER"; readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION"; }; export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; export declare const LicenseType: { readonly ENTERPRISE: "ENTERPRISE"; readonly ENTERPRISE_FREE_TRIAL: "ENTERPRISE_FREE_TRIAL"; }; export type LicenseType = (typeof LicenseType)[keyof typeof LicenseType]; export declare const AuthenticationProviderTypes: { readonly AWS_SSO: "AWS_SSO"; readonly SAML: "SAML"; }; export type AuthenticationProviderTypes = (typeof AuthenticationProviderTypes)[keyof typeof AuthenticationProviderTypes]; export declare const SamlConfigurationStatus: { readonly CONFIGURED: "CONFIGURED"; readonly NOT_CONFIGURED: "NOT_CONFIGURED"; }; export type SamlConfigurationStatus = (typeof SamlConfigurationStatus)[keyof typeof SamlConfigurationStatus]; export declare const DataSourceType: { readonly AMAZON_OPENSEARCH_SERVICE: "AMAZON_OPENSEARCH_SERVICE"; readonly ATHENA: "ATHENA"; readonly CLOUDWATCH: "CLOUDWATCH"; readonly PROMETHEUS: "PROMETHEUS"; readonly REDSHIFT: "REDSHIFT"; readonly SITEWISE: "SITEWISE"; readonly TIMESTREAM: "TIMESTREAM"; readonly TWINMAKER: "TWINMAKER"; readonly XRAY: "XRAY"; }; export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType]; export declare const NotificationDestinationType: { readonly SNS: "SNS"; }; export type NotificationDestinationType = (typeof NotificationDestinationType)[keyof typeof NotificationDestinationType]; export declare const PermissionType: { readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED"; readonly SERVICE_MANAGED: "SERVICE_MANAGED"; }; export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType]; export declare const WorkspaceStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly CREATION_FAILED: "CREATION_FAILED"; readonly DELETING: "DELETING"; readonly DELETION_FAILED: "DELETION_FAILED"; readonly FAILED: "FAILED"; readonly LICENSE_REMOVAL_FAILED: "LICENSE_REMOVAL_FAILED"; readonly UPDATE_FAILED: "UPDATE_FAILED"; readonly UPDATING: "UPDATING"; readonly UPGRADE_FAILED: "UPGRADE_FAILED"; readonly UPGRADING: "UPGRADING"; readonly VERSION_UPDATE_FAILED: "VERSION_UPDATE_FAILED"; readonly VERSION_UPDATING: "VERSION_UPDATING"; }; export type WorkspaceStatus = (typeof WorkspaceStatus)[keyof typeof WorkspaceStatus]; export declare const UserType: { readonly SSO_GROUP: "SSO_GROUP"; readonly SSO_USER: "SSO_USER"; }; export type UserType = (typeof UserType)[keyof typeof UserType]; export declare const Role: { readonly ADMIN: "ADMIN"; readonly EDITOR: "EDITOR"; readonly VIEWER: "VIEWER"; }; export type Role = (typeof Role)[keyof typeof Role]; export declare const UpdateAction: { readonly ADD: "ADD"; readonly REVOKE: "REVOKE"; }; export type UpdateAction = (typeof UpdateAction)[keyof typeof UpdateAction];