Module CodeStar.GitHubRepository

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html

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

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

and code = {
  1. s3 : s3;
}

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

type properties = {
  1. enable_issues : bool option;
  2. connection_arn : string option;
  3. repository_name : string;
  4. repository_access_token : string option;
  5. repository_owner : string;
  6. is_private : bool option;
  7. code : code option;
  8. repository_description : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html;

val make_properties : ?enable_issues:bool -> ?connection_arn:string -> repository_name:string -> ?repository_access_token:string -> repository_owner:string -> ?is_private:bool -> ?code:code -> ?repository_description:string -> unit -> properties
val make_s3 : ?object_version:string -> bucket:string -> key:string -> unit -> s3
val make_code : s3:s3 -> unit -> code
val yojson_of_s3 : s3 -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_code : code -> [> `Assoc of (string * [> `Assoc of (string * Yojson.Safe.t) list ]) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string