Package io.github.cdklabs.projen
Interface DevEnvironmentOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
DevContainerOptions,GitpodOptions
- All Known Implementing Classes:
DevContainerOptions.Jsii$Proxy,DevEnvironmentOptions.Jsii$Proxy,GitpodOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:42.738Z") @Stability(Experimental) public interface DevEnvironmentOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Base options for configuring a container-based development environment.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDevEnvironmentOptions.BuilderA builder forDevEnvironmentOptionsstatic classDevEnvironmentOptions.Jsii$ProxyAn implementation forDevEnvironmentOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static DevEnvironmentOptions.Builderbuilder()default DevEnvironmentDockerImagegetDockerImage()(experimental) A Docker image or Dockerfile for the container.default List<String>getPorts()(experimental) An array of ports that should be exposed from the container.default List<Task>getTasks()(experimental) An array of tasks that should be run when the container starts.default List<String>getVscodeExtensions()(experimental) An array of extension IDs that specify the extensions that should be installed inside the container when it is created.
-
-
-
Method Detail
-
getDockerImage
@Stability(Experimental) @Nullable default DevEnvironmentDockerImage getDockerImage()
(experimental) A Docker image or Dockerfile for the container.
-
getPorts
@Stability(Experimental) @Nullable default List<String> getPorts()
(experimental) An array of ports that should be exposed from the container.
-
getTasks
@Stability(Experimental) @Nullable default List<Task> getTasks()
(experimental) An array of tasks that should be run when the container starts.
-
getVscodeExtensions
@Stability(Experimental) @Nullable default List<String> getVscodeExtensions()
(experimental) An array of extension IDs that specify the extensions that should be installed inside the container when it is created.
-
builder
@Stability(Experimental) static DevEnvironmentOptions.Builder builder()
- Returns:
- a
DevEnvironmentOptions.BuilderofDevEnvironmentOptions
-
-