Interface CfnCodeRepositoryProps

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-02T00:29:17.047Z") @Stability(Stable) public interface CfnCodeRepositoryProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCodeRepository.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 CfnCodeRepositoryProps cfnCodeRepositoryProps = CfnCodeRepositoryProps.builder()
         .gitConfig(GitConfigProperty.builder()
                 .repositoryUrl("repositoryUrl")
                 // the properties below are optional
                 .branch("branch")
                 .secretArn("secretArn")
                 .build())
         // the properties below are optional
         .codeRepositoryName("codeRepositoryName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: