Module Types.StackSetDriftDetectionDetails

type t = {
drift_status : StackSetDriftStatus.t option;
drift_detection_status : StackSetDriftDetectionStatus.t option;
last_drift_check_timestamp : Aws.BaseTypes.DateTime.t option;
total_stack_instances_count : Aws.BaseTypes.Integer.t option;
drifted_stack_instances_count : Aws.BaseTypes.Integer.t option;
in_sync_stack_instances_count : Aws.BaseTypes.Integer.t option;
in_progress_stack_instances_count : Aws.BaseTypes.Integer.t option;
failed_stack_instances_count : Aws.BaseTypes.Integer.t option;
}
val make : ?⁠drift_status:StackSetDriftStatus.t -> ?⁠drift_detection_status:StackSetDriftDetectionStatus.t -> ?⁠last_drift_check_timestamp:Aws.BaseTypes.DateTime.t -> ?⁠total_stack_instances_count:Aws.BaseTypes.Integer.t -> ?⁠drifted_stack_instances_count:Aws.BaseTypes.Integer.t -> ?⁠in_sync_stack_instances_count:Aws.BaseTypes.Integer.t -> ?⁠in_progress_stack_instances_count:Aws.BaseTypes.Integer.t -> ?⁠failed_stack_instances_count:Aws.BaseTypes.Integer.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t