Package com.hashicorp.cdktf
Interface AppConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)",
date="2024-02-05T09:47:53.739Z")
@Stability(Experimental)
public interface AppConfig
extends software.amazon.jsii.JsiiSerializable
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic AppConfig.Builder
builder()
(experimental) Additional context values for the application.default Boolean
default String
(experimental) The directory to output Terraform resources.default Boolean
(experimental) Whether to skip backend validation during synthesis of the app.default Boolean
(experimental) Whether to skip all validations during synthesis of the app.default Boolean
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContext
(experimental) Additional context values for the application.Context set by the CLI or the
context
key incdktf.json
has precedence.Context can be read from any construct using
node.getContext(key)
.Default: - no additional context
-
getHclOutput
-
getOutdir
(experimental) The directory to output Terraform resources.If you are using the CDKTF CLI, this value is automatically set from one of the following three sources:
- The
-o
/--output
CLI option - The
CDKTF_OUTDIR
environment variable - The
outdir
key incdktf.json
If you are using the CDKTF CLI and want to set a different value here, you will also need to set the same value via one of the three ways specified above.
The most common case to set this value is when you are using the CDKTF library directly (e.g. when writing unit tests).
Default: - CDKTF_OUTDIR if defined, otherwise "cdktf.out"
- The
-
getSkipBackendValidation
(experimental) Whether to skip backend validation during synthesis of the app.Default: - false
-
getSkipValidation
(experimental) Whether to skip all validations during synthesis of the app.Default: - false
-
getStackTraces
-
builder
- Returns:
- a
AppConfig.Builder
ofAppConfig
-