/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::CodeStar::GitHubRepository */ export interface AwsCodestarGithubrepository { EnableIssues?: boolean; ConnectionArn?: string; RepositoryName: string; RepositoryAccessToken?: string; Id?: string; RepositoryOwner: string; IsPrivate?: boolean; Code?: Code; RepositoryDescription?: string; } export interface Code { S3: S3; } export interface S3 { ObjectVersion?: string; Bucket: string; Key: string; }