Interface CfnRepositoryPropsMixin.CodeProperty

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

@Stability(Stable) public static interface CfnRepositoryPropsMixin.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.cfnpropertymixins.services.codecommit.*;
 CodeProperty codeProperty = CodeProperty.builder()
         .branchName("branchName")
         .s3(S3Property.builder()
                 .bucket("bucket")
                 .key("key")
                 .objectVersion("objectVersion")
                 .build())
         .build();
 

See Also: