Module Values.UpdateInvestigationStateRequestSource

Updates the state of an investigation.

Sourcetype nonrec t = {
  1. graphArn : GraphArn.t;
    (*

    The Amazon Resource Name (ARN) of the behavior graph.

    *)
  2. investigationId : InvestigationId.t;
    (*

    The investigation ID of the investigation report.

    *)
  3. state : State.t;
    (*

    The current state of the investigation. An archived investigation indicates you have completed reviewing the investigation.

    *)
}
Sourceval context_ : string
Sourceval make : graphArn:GraphArn.t -> investigationId:InvestigationId.t -> state:State.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GraphArn.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