Module Values.DescribeInsightsRefreshResponseSource

Returns the status of the latest on-demand cluster insights refresh operation.

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

    The message associated with the insights refresh operation.

    *)
  2. status : InsightsRefreshStatus.t option;
    (*

    The current status of the insights refresh operation.

    *)
  3. startedAt : Timestamp.t option;
    (*

    The date and time when the insights refresh operation started.

    *)
  4. endedAt : Timestamp.t option;
    (*

    The date and time when the insights refresh operation ended.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterException of InvalidParameterException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServerException of ServerException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?message:??? -> ?status:??? -> ?startedAt:??? -> ?endedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterException of InvalidParameterException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidParameterException of InvalidParameterException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `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