CodeCommit.Repository
see 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 ->
properties
val make_tag : key:string -> value:string -> unit -> tag
val make_repository_trigger :
events:string list ->
?branches:string list ->
?custom_data:string ->
destination_arn:string ->
name:string ->
unit ->
repository_trigger
val make_s3 :
?object_version:string ->
bucket:string ->
key:string ->
unit ->
s3
val 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.t
val 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