package aws-cloudformation

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. stack_name : Aws.BaseTypes.String.t option;
  2. stack_id : Aws.BaseTypes.String.t option;
  3. logical_resource_id : Aws.BaseTypes.String.t;
  4. physical_resource_id : Aws.BaseTypes.String.t option;
  5. resource_type : Aws.BaseTypes.String.t;
  6. last_updated_timestamp : Aws.BaseTypes.DateTime.t;
  7. resource_status : ResourceStatus.t;
  8. resource_status_reason : Aws.BaseTypes.String.t option;
  9. description : Aws.BaseTypes.String.t option;
  10. metadata : Aws.BaseTypes.String.t option;
  11. drift_information : StackResourceDriftInformation.t option;
}
val make : ?stack_name:Aws.BaseTypes.String.t -> ?stack_id:Aws.BaseTypes.String.t -> logical_resource_id:Aws.BaseTypes.String.t -> ?physical_resource_id:Aws.BaseTypes.String.t -> resource_type:Aws.BaseTypes.String.t -> last_updated_timestamp:Aws.BaseTypes.DateTime.t -> resource_status:ResourceStatus.t -> ?resource_status_reason:Aws.BaseTypes.String.t -> ?description:Aws.BaseTypes.String.t -> ?metadata:Aws.BaseTypes.String.t -> ?drift_information:StackResourceDriftInformation.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