Skip to content

AppProps

Initialization props for apps.

Initializer

import "github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore"
&alicloudroscdkcore.AppProps {
    AutoSynth: *bool,
    Context: *map[string]*string,
    Outdir: *string,
    RuntimeInfo: *bool,
    StackTraces: *bool,
    TreeMetadata: *bool,
}

Properties

Name Type Description
AutoSynth *bool Automatically call 'synth()' before the program exits.
Context map[string]string Additional context values for the application.
Outdir *string The output directory into which to emit synthesized artifacts.
RuntimeInfo *bool Include runtime versioning information.
StackTraces *bool Include construct creation stack trace.
TreeMetadata *bool Include construct tree metadata as part of the Cloud Assembly.

AutoSynthOptional

AutoSynth *bool
  • Type: *bool

Automatically call 'synth()' before the program exits.

If you set this, you don't have to call 'synth()' explicitly. Note that this feature is only available for certain programming languages, and calling 'synth()' is still recommended.

Default true if running via CDK CLI ('CDK_OUTDIR' is set), 'false' otherwise


ContextOptional

Context *map[string]*string
  • Type: map[string]string
  • Default: no additional context

Additional context values for the application.

Context set by the CLI or the 'context' key in 'cdk.json' has precedence.

Context can be read from any construct using 'node.getContext(key)'.


OutdirOptional

Outdir *string
  • Type: *string

The output directory into which to emit synthesized artifacts.

Default - If this value is not set, considers the environment variable 'CDK_OUTDIR'. If 'CDK_OUTDIR' is not defined, uses a temp directory.


RuntimeInfoOptional

RuntimeInfo *bool
  • Type: *bool
  • Default: true runtime info is included unless related comtext is set.

Include runtime versioning information.


StackTracesOptional

StackTraces *bool
  • Type: *bool
  • Default: true stack traces are included unless related context is set.

Include construct creation stack trace.


TreeMetadataOptional

TreeMetadata *bool
  • Type: *bool
  • Default: true

Include construct tree metadata as part of the Cloud Assembly.