Interface CfnCodeRepository.GitConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCodeRepository.GitConfigProperty.Jsii$Proxy
Enclosing class:
CfnCodeRepository

@Stability(Stable) public static interface CfnCodeRepository.GitConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies configuration details for a Git repository in your AWS account.

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.*;
 GitConfigProperty gitConfigProperty = GitConfigProperty.builder()
         .repositoryUrl("repositoryUrl")
         // the properties below are optional
         .branch("branch")
         .secretArn("secretArn")
         .build();
 

See Also: