Interface CfnEnvironmentEC2PropsMixin.RepositoryProperty

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

@Stability(Stable) public static interface CfnEnvironmentEC2PropsMixin.RepositoryProperty extends software.amazon.jsii.JsiiSerializable
The Repository property type specifies an AWS CodeCommit source code repository to be cloned into an AWS Cloud9 development environment.

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.cloud9.*;
 RepositoryProperty repositoryProperty = RepositoryProperty.builder()
         .pathComponent("pathComponent")
         .repositoryUrl("repositoryUrl")
         .build();
 

See Also: