package aws-cloudformation

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. drift_status : StackSetDriftStatus.t option;
  2. drift_detection_status : StackSetDriftDetectionStatus.t option;
  3. last_drift_check_timestamp : Aws.BaseTypes.DateTime.t option;
  4. total_stack_instances_count : Aws.BaseTypes.Integer.t option;
  5. drifted_stack_instances_count : Aws.BaseTypes.Integer.t option;
  6. in_sync_stack_instances_count : Aws.BaseTypes.Integer.t option;
  7. in_progress_stack_instances_count : Aws.BaseTypes.Integer.t option;
  8. 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