Module Values.EnablementStatusSummarySource

The deployment summary of an EnabledControl or EnabledBaseline resource.

Sourcetype nonrec t = {
  1. status : EnablementStatus.t option;
    (*

    The deployment status of the enabled resource. Valid values: SUCCEEDED: The EnabledControl or EnabledBaseline configuration was deployed successfully. UNDER_CHANGE: The EnabledControl or EnabledBaseline configuration is changing. FAILED: The EnabledControl or EnabledBaseline configuration failed to deploy.

    *)
  2. lastOperationIdentifier : OperationIdentifier.t option;
    (*

    The last operation identifier for the enabled resource.

    *)
}
Sourceval make : ?status:??? -> ?lastOperationIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OperationIdentifier.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