@Stability(value=Stable)
public static interface CfnEnvironmentEC2.RepositoryProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getPathComponent()
The path within the development environment's default file system location to clone the AWS CodeCommit repository into.
|
String |
getRepositoryUrl()
The clone URL of the AWS CodeCommit repository to be cloned.
|
@Stability(value=Stable) @NotNull String getPathComponent()
For example, /REPOSITORY_NAME would clone the repository into the /home/USER_NAME/environment/REPOSITORY_NAME directory in the environment.
@Stability(value=Stable) @NotNull String getRepositoryUrl()
For example, for an AWS CodeCommit repository this might be https://git-codecommit.us-east-2.amazonaws.com/v1/repos/REPOSITORY_NAME .
@Stability(value=Stable) static CfnEnvironmentEC2.RepositoryProperty.Builder builder()
Copyright © 2022. All rights reserved.