Module AppConfig.Application

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html

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

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

type properties = {
  1. description : string option;
  2. tags : tags list option;
  3. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html;

val make_properties : ?description:string -> ?tags:tags list -> name:string -> unit -> properties
val make_tags : value:string -> key:string -> unit -> tags
val yojson_of_tags : tags -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. application_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string