Module Types.DescribeStackDriftDetectionStatusOutput

type t = {
stack_id : Aws.BaseTypes.String.t;
stack_drift_detection_id : Aws.BaseTypes.String.t;
stack_drift_status : StackDriftStatus.t option;
detection_status : StackDriftDetectionStatus.t;
detection_status_reason : Aws.BaseTypes.String.t option;
drifted_stack_resource_count : Aws.BaseTypes.Integer.t option;
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