SynthesisOptions¶
-
class
aws_cdk.core.
SynthesisOptions
(*, runtime_info=None, outdir=None, skip_validation=None)¶ Bases:
aws_cdk.cx_api.AssemblyBuildOptions
(deprecated) Options for synthesis.
- Parameters
runtime_info (
Optional
[RuntimeInfo
]) – (deprecated) Include the specified runtime information (module versions) in manifest. Default: - if this option is not specified, runtime info will not be includedoutdir (
Optional
[str
]) – (deprecated) The output directory into which to synthesize the cloud assembly. Default: - creates a temporary directoryskip_validation (
Optional
[bool
]) – (deprecated) Whether synthesis should skip the validation phase. Default: false
- Deprecated
use
app.synth()
orstage.synth()
instead- Stability
deprecated
Attributes
-
outdir
¶ (deprecated) The output directory into which to synthesize the cloud assembly.
- Default
creates a temporary directory
- Stability
deprecated
- Return type
Optional
[str
]
-
runtime_info
¶ (deprecated) Include the specified runtime information (module versions) in manifest.
- Default
if this option is not specified, runtime info will not be included
- Deprecated
All template modifications that should result from this should have already been inserted into the template.
- Stability
deprecated
- Return type
Optional
[RuntimeInfo
]
-
skip_validation
¶ (deprecated) Whether synthesis should skip the validation phase.
- Default
false
- Stability
deprecated
- Return type
Optional
[bool
]