Show / Hide Table of Contents

Class LambdaRuntimeProps

Inheritance
object
LambdaRuntimeProps
Implements
ILambdaRuntimeProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LambdaRuntimeProps : ILambdaRuntimeProps
Syntax (vb)
Public Class LambdaRuntimeProps 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 ZipFile (aka inline code) property can be used with this runtime.

SupportsSnapStart

Whether this runtime supports SnapStart.

Constructors

LambdaRuntimeProps()

public LambdaRuntimeProps()
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
            };

Properties

BundlingDockerImage

public string? BundlingDockerImage { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

IsVariable

Whether the runtime enum is meant to change over time, IE NODEJS_LATEST.

public bool? IsVariable { get; set; }
Property Value

bool?

Remarks

Default: false

SupportsCodeGuruProfiling

Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.

public bool? SupportsCodeGuruProfiling { get; set; }
Property Value

bool?

Remarks

Default: false

SupportsInlineCode

Whether the ZipFile (aka inline code) property can be used with this runtime.

public bool? SupportsInlineCode { get; set; }
Property Value

bool?

Remarks

Default: false

SupportsSnapStart

Whether this runtime supports SnapStart.

public bool? SupportsSnapStart { get; set; }
Property Value

bool?

Remarks

Default: false

Implements

ILambdaRuntimeProps
Back to top Generated by DocFX