Module Lambda.LayerVersion

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html

type content = {
  1. s3_object_version : string option;
  2. s3_bucket : string;
  3. s3_key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html

type properties = {
  1. compatible_runtimes : string list option;
  2. license_info : string option;
  3. description : string option;
  4. layer_name : string option;
  5. content : content;
  6. compatible_architectures : string list option;
}

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

val make_properties : ?compatible_runtimes:string list -> ?license_info:string -> ?description:string -> ?layer_name:string -> content:content -> ?compatible_architectures:string list -> unit -> properties
val make_content : ?s3_object_version:string -> s3_bucket:string -> s3_key:string -> unit -> content
val yojson_of_content : content -> [> `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. layer_version_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string