Table of Contents

Interface IAppProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Initialization props for apps.

public interface IAppProps

Examples

// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;

            var context;
            var appProps = new AppProps {
                AnalyticsReporting = false,
                AutoSynth = false,
                Context = new Dictionary<string, object> {
                    { "contextKey", context }
                },
                Outdir = "outdir",
                RuntimeInfo = false,
                StackTraces = false,
                TreeMetadata = false
            };

Remarks

ExampleMetadata: fixture=_generated

Properties

AnalyticsReporting

Include runtime versioning information in the Stacks of this app.

bool? AnalyticsReporting { get; }

Property Value

bool?

Remarks

Default: Value of 'aws:cdk:version-reporting' context key

AutoSynth

Automatically call synth() before the program exits.

bool? AutoSynth { get; }

Property Value

bool?

Remarks

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

Context

Additional context values for the application.

IDictionary<string, object>? Context { get; }

Property Value

IDictionary<string, object>

Remarks

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).

Default: - no additional context

Outdir

The output directory into which to emit synthesized artifacts.

string? Outdir { get; }

Property Value

string

Remarks

You should never need to set this value. By default, the value you pass to the CLI's --output flag will be used, and if you change it to a different directory the CLI will fail to pick up the generated Cloud Assembly.

This property is intended for internal and testing use.

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

RuntimeInfo

(deprecated) Include runtime versioning information in the Stacks of this app.

[Obsolete("use `versionReporting` instead")]
bool? RuntimeInfo { get; }

Property Value

bool?

Remarks

Default: Value of 'aws:cdk:version-reporting' context key

Stability: Deprecated

StackTraces

Include construct creation stack trace in the aws:cdk:trace metadata key of all constructs.

bool? StackTraces { get; }

Property Value

bool?

Remarks

Default: true stack traces are included unless aws:cdk:disable-stack-trace is set in the context.

TreeMetadata

Include construct tree metadata as part of the Cloud Assembly.

bool? TreeMetadata { get; }

Property Value

bool?

Remarks

Default: true