Module Values.AdministrativeOverrideSource

Information about the override status applied to a target.

Sourcetype nonrec t = {
  1. state : TargetAdministrativeOverrideStateEnum.t option;
    (*

    The state of the override.

    *)
  2. reason : TargetAdministrativeOverrideReasonEnum.t option;
    (*

    The reason code for the state.

    *)
  3. description : Description.t option;
    (*

    A description of the override state that provides additional details.

    *)
}
Sourceval make : ?state:??? -> ?reason:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Description.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