Interface ProjectTarget
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ProjectTarget.Jsii$Proxy
@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-02-01T23:43:15.991Z") @Stability(Stable) public interface ProjectTarget extends software.amazon.jsii.JsiiSerializable
Project Target.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classProjectTarget.BuilderA builder forProjectTargetstatic classProjectTarget.Jsii$ProxyAn implementation forProjectTarget
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ProjectTarget.Builderbuilder()default List<TargetDependency>getDependsOn()List of Target Dependencies.default List<String>getInputs()List of inputs to hash for cache key, relative to the root of the monorepo.default List<String>getOutputs()List of outputs to cache, relative to the root of the monorepo.
-
-
-
Method Detail
-
getDependsOn
@Stability(Stable) @Nullable default List<TargetDependency> getDependsOn()
List of Target Dependencies.
-
getInputs
@Stability(Stable) @Nullable default List<String> getInputs()
List of inputs to hash for cache key, relative to the root of the monorepo.note: must start with leading /
-
getOutputs
@Stability(Stable) @Nullable default List<String> getOutputs()
List of outputs to cache, relative to the root of the monorepo.note: must start with leading /
-
builder
@Stability(Stable) static ProjectTarget.Builder builder()
- Returns:
- a
ProjectTarget.BuilderofProjectTarget
-
-