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.
virtual Nullable<bool> StackTrace { get; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: true
TypeHint
Type that this token is expected to evaluate to.
virtual Nullable<ResolutionTypeHint> TypeHint { get; }
Property Value
System.Nullable<ResolutionTypeHint>
Remarks
Default: ResolutionTypeHint.STRING