Module Cloud9.EnvironmentEC2

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html

type repository = {
  1. path_component : string;
  2. repository_url : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html

and tag = {
  1. key : string;
  2. value : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. repositories : repository list option;
  2. owner_arn : string option;
  3. description : string option;
  4. connection_type : string option;
  5. automatic_stop_time_minutes : int option;
  6. image_id : string;
  7. subnet_id : string option;
  8. instance_type : string;
  9. tags : tag list option;
  10. 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 ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
  3. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string