package aws-cloudformation

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. stack_id : Aws.BaseTypes.String.t;
  2. stack_drift_detection_id : Aws.BaseTypes.String.t;
  3. stack_drift_status : StackDriftStatus.t option;
  4. detection_status : StackDriftDetectionStatus.t;
  5. detection_status_reason : Aws.BaseTypes.String.t option;
  6. drifted_stack_resource_count : Aws.BaseTypes.Integer.t option;
  7. timestamp : Aws.BaseTypes.DateTime.t;
}
val make : stack_id:Aws.BaseTypes.String.t -> stack_drift_detection_id:Aws.BaseTypes.String.t -> ?stack_drift_status:StackDriftStatus.t -> detection_status:StackDriftDetectionStatus.t -> ?detection_status_reason:Aws.BaseTypes.String.t -> ?drifted_stack_resource_count:Aws.BaseTypes.Integer.t -> timestamp:Aws.BaseTypes.DateTime.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