Skip to content

SynthesisOptions

Options for synthesis.

Initializer

using AlibabaCloud.SDK.ROS.CDK.Core;
new SynthesisOptions {
    RuntimeInfo RuntimeInfo = null,
    string Outdir = null,
    bool SkipValidation = null
};

Properties

Name Type Description
RuntimeInfo AlibabaCloud.SDK.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 bool Whether synthesis should skip the validation phase.

~~RuntimeInfo~~Optional

  • Deprecated: use app.synth() or stage.synth() instead
public RuntimeInfo RuntimeInfo { get; set; }
  • Type: AlibabaCloud.SDK.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 string Outdir { get; set; }
  • 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 bool SkipValidation { get; set; }
  • Type: bool
  • Default: false

Whether synthesis should skip the validation phase.