Module CloudFormation.Stack

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html

type tag = {
  1. key : string;
  2. value : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. notification_ar_ns : string list option;
  2. parameters : string Stdlib__Map.Make(Stdlib.String).t option;
  3. tags : tag list option;
  4. template_url : string;
  5. timeout_in_minutes : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html;

val make_properties : ?notification_ar_ns:string list -> ?parameters:string Stdlib__Map.Make(Stdlib.String).t -> ?tags:tag list -> template_url:string -> ?timeout_in_minutes:int -> unit -> properties
val make_tag : key:string -> value:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string