Package com.hashicorp.cdktf
Interface AppConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.91.0 (build 1b1f239)",
date="2023-11-22T14:39:30.901Z")
@Stability(Experimental)
public interface AppConfig
extends software.amazon.jsii.JsiiSerializable
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AppConfig.Builder
builder()
(experimental) Additional context values for the application.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
-
getOutdir
(experimental) The directory to output Terraform resources.Default: - CDKTF_OUTDIR if defined, otherwise "cdktf.out"
-
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
-