Interface CfnGitHubRepositoryMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGitHubRepositoryMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:57.346Z") @Stability(Stable) public interface CfnGitHubRepositoryMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnGitHubRepositoryPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.codestar.*;
 CfnGitHubRepositoryMixinProps cfnGitHubRepositoryMixinProps = CfnGitHubRepositoryMixinProps.builder()
         .code(CodeProperty.builder()
                 .s3(S3Property.builder()
                         .bucket("bucket")
                         .key("key")
                         .objectVersion("objectVersion")
                         .build())
                 .build())
         .connectionArn("connectionArn")
         .enableIssues(false)
         .isPrivate(false)
         .repositoryAccessToken("repositoryAccessToken")
         .repositoryDescription("repositoryDescription")
         .repositoryName("repositoryName")
         .repositoryOwner("repositoryOwner")
         .build();
 

See Also: