Interface CfnRepository.CodeProperty

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

@Stability(Stable) public static interface CfnRepository.CodeProperty extends software.amazon.jsii.JsiiSerializable
Information about code to be committed.

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.codecommit.*;
 CodeProperty codeProperty = CodeProperty.builder()
         .s3(S3Property.builder()
                 .bucket("bucket")
                 .key("key")
                 // the properties below are optional
                 .objectVersion("objectVersion")
                 .build())
         // the properties below are optional
         .branchName("branchName")
         .build();
 

See Also: