Module Values.ServiceAccountSummarySource

A structure that contains the information about one service account.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The unique ID of the service account.

    *)
  2. name : String_.t option;
    (*

    The name of the service account.

    *)
  3. isDisabled : String_.t option;
    (*

    Returns true if the service account is disabled. Service accounts can be disabled and enabled in the Amazon Managed Grafana console.

    *)
  4. grafanaRole : Role.t option;
    (*

    The role of the service account, which sets the permission level used when calling Grafana APIs.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?isDisabled:??? -> ?grafanaRole:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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