Module ElasticBeanstalk.ApplicationVersion

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-applicationversion.html

type source_bundle = {
  1. s3_bucket : string;
  2. s3_key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-applicationversion-sourcebundle.html

type properties = {
  1. application_name : string;
  2. description : string option;
  3. source_bundle : source_bundle;
}

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

val make_properties : application_name:string -> ?description:string -> source_bundle:source_bundle -> unit -> properties
val make_source_bundle : s3_bucket:string -> s3_key:string -> unit -> source_bundle
val yojson_of_source_bundle : source_bundle -> [> `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. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string