M2.Application
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-application.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-m2-application-definition.html
type properties = {
description : string option;
kms_key_id : string option;
definition : definition;
engine_type : string;
role_arn : string option;
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 ]
val create_attributes : string -> attributes