Module Values.WorkspaceSummarySource

The information 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.

    *)
  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.

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

    The current status of the workspace.

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

    The date and time that the workspace was created.

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

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

    *)
  7. 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:??? -> ?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