Class CfnFunction.RuntimeManagementConfigProperty
Sets the runtime management configuration for a function's version.
Inheritance
System.Object
CfnFunction.RuntimeManagementConfigProperty
Implements
Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.AWS.Lambda.dll
Syntax (csharp)
public class RuntimeManagementConfigProperty : Object, CfnFunction.IRuntimeManagementConfigProperty
Syntax (vb)
Public Class RuntimeManagementConfigProperty
Inherits Object
Implements CfnFunction.IRuntimeManagementConfigProperty
Remarks
For more information, see Runtime updates .
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 runtimeManagementConfigProperty = new RuntimeManagementConfigProperty {
UpdateRuntimeOn = "updateRuntimeOn",
// the properties below are optional
RuntimeVersionArn = "runtimeVersionArn"
};
Synopsis
Constructors
RuntimeManagementConfigProperty() |
Properties
RuntimeVersionArn | The ARN of the runtime version you want the function to use. |
UpdateRuntimeOn | Specify the runtime update mode. |
Constructors
RuntimeManagementConfigProperty()
public RuntimeManagementConfigProperty()
Properties
RuntimeVersionArn
The ARN of the runtime version you want the function to use.
public string RuntimeVersionArn { get; set; }
Property Value
System.String
Remarks
This is only required if you're using the Manual runtime update mode.
UpdateRuntimeOn
Specify the runtime update mode.
public string UpdateRuntimeOn { get; set; }
Property Value
System.String
Remarks
Valid Values : Auto
| FunctionUpdate
| Manual