Skip to content

SynthesisOptions

Options for synthesis.

Initializer

import ros_cdk_core
ros_cdk_core.SynthesisOptions(
  runtime_info: RuntimeInfo = None,
  outdir: str = None,
  skip_validation: bool = None
)

Properties

Name Type Description
runtime_info ros_cdk_cxapi.RuntimeInfo Include the specified runtime information (module versions) in manifest.
outdir str The output directory into which to synthesize the cloud assembly.
skip_validation bool Whether synthesis should skip the validation phase.

~~runtime_info~~Optional

  • Deprecated: use app.synth() or stage.synth() instead
runtime_info: RuntimeInfo
  • Type: ros_cdk_cxapi.RuntimeInfo
  • Default: if this option is not specified, runtime info will not be included

Include the specified runtime information (module versions) in manifest.


~~outdir~~Optional

  • Deprecated: use app.synth() or stage.synth() instead
outdir: str
  • Type: str
  • Default: creates a temporary directory

The output directory into which to synthesize the cloud assembly.


~~skip_validation~~Optional

  • Deprecated: use app.synth() or stage.synth() instead
skip_validation: bool
  • Type: bool
  • Default: false

Whether synthesis should skip the validation phase.