Cloud9.EnvironmentEC2
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
repositories : repository list option;
owner_arn : string option;
description : string option;
connection_type : string option;
automatic_stop_time_minutes : int option;
image_id : string;
subnet_id : string option;
instance_type : string;
name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html;
val make_properties :
?repositories:repository list ->
?owner_arn:string ->
?description:string ->
?connection_type:string ->
?automatic_stop_time_minutes:int ->
image_id:string ->
?subnet_id:string ->
instance_type:string ->
?tags:tag list ->
?name:string ->
unit ->
properties
val make_repository :
path_component:string ->
repository_url:string ->
unit ->
repository
val make_tag : key:string -> value:string -> unit -> tag
val yojson_of_repository :
repository ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes