package aws-cloudformation

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