Class LambdaRuntimeProps
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LambdaRuntimeProps : Object, ILambdaRuntimeProps
Syntax (vb)
Public Class LambdaRuntimeProps
Inherits Object
Implements ILambdaRuntimeProps
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.AWS.Lambda;
var lambdaRuntimeProps = new LambdaRuntimeProps {
BundlingDockerImage = "bundlingDockerImage",
IsVariable = false,
SupportsCodeGuruProfiling = false,
SupportsInlineCode = false,
SupportsSnapStart = false
};
Synopsis
Constructors
LambdaRuntimeProps() |
Properties
BundlingDockerImage | |
IsVariable | Whether the runtime enum is meant to change over time, IE NODEJS_LATEST. |
SupportsCodeGuruProfiling | Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler. |
SupportsInlineCode | Whether the |
SupportsSnapStart | Whether this runtime supports SnapStart. |
Constructors
LambdaRuntimeProps()
public LambdaRuntimeProps()
Properties
BundlingDockerImage
public string BundlingDockerImage { get; set; }
Property Value
System.String
IsVariable
Whether the runtime enum is meant to change over time, IE NODEJS_LATEST.
public Nullable<bool> IsVariable { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: false
SupportsCodeGuruProfiling
Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.
public Nullable<bool> SupportsCodeGuruProfiling { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: false
SupportsInlineCode
Whether the ZipFile
(aka inline code) property can be used with this runtime.
public Nullable<bool> SupportsInlineCode { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: false
SupportsSnapStart
Whether this runtime supports SnapStart.
public Nullable<bool> SupportsSnapStart { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: false