public static interface CfnEnvironmentEC2.RepositoryProperty
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.cloud9.*; RepositoryProperty repositoryProperty = RepositoryProperty.builder() .pathComponent("pathComponent") .repositoryUrl("repositoryUrl") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEnvironmentEC2.RepositoryProperty.Builder
A builder for
CfnEnvironmentEC2.RepositoryProperty |
static class |
CfnEnvironmentEC2.RepositoryProperty.Jsii$Proxy
An implementation for
CfnEnvironmentEC2.RepositoryProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEnvironmentEC2.RepositoryProperty.Builder |
builder() |
java.lang.String |
getPathComponent()
The path within the development environment's default file system location to clone the AWS CodeCommit repository into.
|
java.lang.String |
getRepositoryUrl()
The clone URL of the AWS CodeCommit repository to be cloned.
|
java.lang.String getPathComponent()
For example, /REPOSITORY_NAME
would clone the repository into the /home/USER_NAME/environment/REPOSITORY_NAME
directory in the environment.
java.lang.String getRepositoryUrl()
For example, for an AWS CodeCommit repository this might be https://git-codecommit.us-east-2.amazonaws.com/v1/repos/REPOSITORY_NAME
.
static CfnEnvironmentEC2.RepositoryProperty.Builder builder()