Module Values.CollectorHealthCheckSource

Describes the last Fleet Advisor collector health check.

Sourcetype nonrec t = {
  1. collectorStatus : CollectorStatus.t option;
    (*

    The status of the Fleet Advisor collector.

    *)
  2. localCollectorS3Access : BooleanOptional.t option;
    (*

    Whether the local collector can access its Amazon S3 bucket.

    *)
  3. webCollectorS3Access : BooleanOptional.t option;
    (*

    Whether the web collector can access its Amazon S3 bucket.

    *)
  4. webCollectorGrantedRoleBasedAccess : BooleanOptional.t option;
    (*

    Whether the role that you provided when creating the Fleet Advisor collector has sufficient permissions to access the Fleet Advisor web collector.

    *)
}
Sourceval make : ?collectorStatus:??? -> ?localCollectorS3Access:??? -> ?webCollectorS3Access:??? -> ?webCollectorGrantedRoleBasedAccess:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string ]) 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