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 option;
  2. stack_name : Aws.BaseTypes.String.t;
  3. template_description : Aws.BaseTypes.String.t option;
  4. creation_time : Aws.BaseTypes.DateTime.t;
  5. last_updated_time : Aws.BaseTypes.DateTime.t option;
  6. deletion_time : Aws.BaseTypes.DateTime.t option;
  7. stack_status : StackStatus.t;
  8. stack_status_reason : Aws.BaseTypes.String.t option;
  9. parent_id : Aws.BaseTypes.String.t option;
  10. root_id : Aws.BaseTypes.String.t option;
  11. drift_information : StackDriftInformationSummary.t option;
}
val make : ?stack_id:Aws.BaseTypes.String.t -> stack_name:Aws.BaseTypes.String.t -> ?template_description:Aws.BaseTypes.String.t -> creation_time:Aws.BaseTypes.DateTime.t -> ?last_updated_time:Aws.BaseTypes.DateTime.t -> ?deletion_time:Aws.BaseTypes.DateTime.t -> stack_status:StackStatus.t -> ?stack_status_reason:Aws.BaseTypes.String.t -> ?parent_id:Aws.BaseTypes.String.t -> ?root_id:Aws.BaseTypes.String.t -> ?drift_information:StackDriftInformationSummary.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