Module Values.WorkspaceSummarySource

A structure that contains some information about one workspace in the account.

Sourcetype nonrec t = {
  1. created : Timestamp.t option;
    (*

    The date that the workspace was created.

    *)
  2. description : Description.t option;
    (*

    The customer-entered description of the workspace.

    *)
  3. endpoint : Endpoint.t option;
    (*

    The URL endpoint to use to access the Grafana console in the workspace.

    *)
  4. grafanaVersion : GrafanaVersion.t option;
    (*

    The Grafana version that the workspace is running.

    *)
  5. id : WorkspaceId.t option;
    (*

    The unique ID of the workspace.

    *)
  6. modified : Timestamp.t option;
    (*

    The most recent date that the workspace was modified.

    *)
  7. name : WorkspaceName.t option;
    (*

    The name of the workspace.

    *)
  8. notificationDestinations : NotificationDestinationsList.t option;
    (*

    The Amazon Web Services notification channels that Amazon Managed Grafana can automatically create IAM roles and permissions for, which allows Amazon Managed Grafana to use these channels.

    *)
  9. status : WorkspaceStatus.t option;
    (*

    The current status of the workspace.

    *)
  10. authentication : AuthenticationSummary.t option;
    (*

    A structure containing information about the authentication methods used in the workspace.

    *)
  11. tags : TagMap.t option;
    (*

    The list of tags associated with the workspace.

    *)
  12. licenseType : LicenseType.t option;
    (*

    Specifies whether this workspace has a full Grafana Enterprise license. Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.

    *)
  13. grafanaToken : GrafanaToken.t option;
    (*

    The token that ties this workspace to a Grafana Labs account. For more information, see Link your account with Grafana Labs.

    *)
}
Sourceval make : ?created:??? -> ?description:??? -> ?endpoint:??? -> ?grafanaVersion:??? -> ?id:??? -> ?modified:??? -> ?name:??? -> ?notificationDestinations:??? -> ?status:??? -> ?authentication:??? -> ?tags:??? -> ?licenseType:??? -> ?grafanaToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Description.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t