Show / Hide Table of Contents

Interface IIntrinsicProps

Customization properties for an Intrinsic token.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IIntrinsicProps
Syntax (vb)
Public Interface IIntrinsicProps
Remarks

ExampleMetadata: fixture=_generated

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

            var intrinsicProps = new IntrinsicProps {
                StackTrace = false,
                TypeHint = ResolutionTypeHint.STRING
            };

Synopsis

Properties

StackTrace

Capture the stack trace of where this token is created.

TypeHint

Type that this token is expected to evaluate to.

Properties

StackTrace

Capture the stack trace of where this token is created.

bool? StackTrace { get; }
Property Value

bool?

Remarks

Default: true

TypeHint

Type that this token is expected to evaluate to.

ResolutionTypeHint? TypeHint { get; }
Property Value

ResolutionTypeHint?

Remarks

Default: ResolutionTypeHint.STRING

Back to top Generated by DocFX