CodeCommit.Repositorysee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
and repository_trigger = {events : string list;branches : string list option;custom_data : string option;destination_arn : string;name : string;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-code.html
type properties = {kms_key_id : string option;repository_name : string;triggers : repository_trigger list option;code : code option;repository_description : string option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html;
val make_properties :
?kms_key_id:string ->
repository_name:string ->
?triggers:repository_trigger list ->
?code:code ->
?repository_description:string ->
?tags:tag list ->
unit ->
propertiesval make_tag : key:string -> value:string -> unit -> tagval make_repository_trigger :
events:string list ->
?branches:string list ->
?custom_data:string ->
destination_arn:string ->
name:string ->
unit ->
repository_triggerval make_s3 :
?object_version:string ->
bucket:string ->
key:string ->
unit ->
s3val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_repository_trigger :
repository_trigger ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_s3 : s3 -> Yojson.Safe.tval yojson_of_code : code -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes