Module Values.WorkspaceDescriptionSource

The full details about one Amazon Managed Service for Prometheus workspace in your account.

Sourcetype nonrec t = {
  1. workspaceId : WorkspaceId.t option;
    (*

    The unique ID for the workspace. For example, ws-example1-1234-abcd-5678-ef90abcd1234.

    *)
  2. alias : WorkspaceAlias.t option;
    (*

    The alias that is assigned to this workspace to help identify it. It does not need to be unique.

    *)
  3. arn : WorkspaceArn.t option;
    (*

    The ARN of the workspace. For example, arn:aws:aps:<region>:123456789012:workspace/ws-example1-1234-abcd-5678-ef90abcd1234.

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

    The current status of the workspace.

    *)
  5. prometheusEndpoint : Uri_.t option;
    (*

    The Prometheus endpoint available for this workspace. For example, https://aps-workspaces.<region>.amazonaws.com/workspaces/ws-example1-1234-abcd-5678-ef90abcd1234/api/v1/.

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

    The date and time that the workspace was created.

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

    The list of tag keys and values that are associated with the workspace.

    *)
  8. kmsKeyArn : KmsKeyArn.t option;
    (*

    (optional) If the workspace was created with a customer managed KMS key, the ARN for the key used.

    *)
}
Sourceval make : ?workspaceId:??? -> ?alias:??? -> ?arn:??? -> ?status:??? -> ?prometheusEndpoint:??? -> ?createdAt:??? -> ?tags:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of WorkspaceId.t | `Structure of (string * [> `Enum of string ]) 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