Skip to content

SynthesisOptions

Options for synthesis.

Initializer

import { SynthesisOptions } from '@alicloud/ros-cdk-core'
const synthesisOptions: SynthesisOptions = { ... }

Properties

Name Type Description
runtimeInfo @alicloud/ros-cdk-cxapi.RuntimeInfo Include the specified runtime information (module versions) in manifest.
outdir string The output directory into which to synthesize the cloud assembly.
skipValidation boolean Whether synthesis should skip the validation phase.

~~runtimeInfo~~Optional

  • Deprecated: use app.synth() or stage.synth() instead
public readonly runtimeInfo: RuntimeInfo;
  • Type: @alicloud/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
public readonly outdir: string;
  • Type: string
  • Default: creates a temporary directory

The output directory into which to synthesize the cloud assembly.


~~skipValidation~~Optional

  • Deprecated: use app.synth() or stage.synth() instead
public readonly skipValidation: boolean;
  • Type: boolean
  • Default: false

Whether synthesis should skip the validation phase.