CodeStar.GitHubRepository
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-code.html
type properties = {
enable_issues : bool option;
connection_arn : string option;
repository_name : string;
repository_access_token : string option;
repository_owner : string;
is_private : bool option;
code : code option;
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 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 ]
val create_attributes : string -> attributes