Module M2.Application

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

type definition = {
  1. content : string option;
  2. s3_location : string option;
}

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

type properties = {
  1. description : string option;
  2. kms_key_id : string option;
  3. definition : definition;
  4. engine_type : string;
  5. role_arn : string option;
  6. tags : string Stdlib__Map.Make(Stdlib.String).t option;
  7. name : string;
}

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

val make_properties : ?description:string -> ?kms_key_id:string -> definition:definition -> engine_type:string -> ?role_arn:string -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> name:string -> unit -> properties
val make_definition : ?content:string -> ?s3_location:string -> unit -> definition
val yojson_of_definition : definition -> [> `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_arn : string;
  3. application_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string