Module CodeCommit.Repository

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html

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

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

and repository_trigger = {
  1. events : string list;
  2. branches : string list option;
  3. custom_data : string option;
  4. destination_arn : string;
  5. name : string;
}

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

and s3 = {
  1. object_version : string option;
  2. bucket : string;
  3. key : string;
}

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

and code = {
  1. s3 : s3;
  2. branch_name : string option;
}

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

type properties = {
  1. kms_key_id : string option;
  2. repository_name : string;
  3. triggers : repository_trigger list option;
  4. code : code option;
  5. repository_description : string option;
  6. tags : tag list 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 make_code : s3:s3 -> ?branch_name:string -> unit -> code
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 ]
type attributes = {
  1. ref_ : string;
  2. clone_url_http : string;
  3. kms_key_id : string;
  4. clone_url_ssh : string;
  5. arn : string;
  6. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string