Show / Hide Table of Contents

Class CfnFunction.RuntimeManagementConfigProperty

Sets the runtime management configuration for a function's version.

Inheritance
System.Object
CfnFunction.RuntimeManagementConfigProperty
Implements
CfnFunction.IRuntimeManagementConfigProperty
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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-runtimemanagementconfig.html

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-runtimemanagementconfig.html#cfn-lambda-function-runtimemanagementconfig-runtimeversionarn

UpdateRuntimeOn

Specify the runtime update mode.

public string UpdateRuntimeOn { get; set; }
Property Value

System.String

Remarks

    Valid Values : Auto | FunctionUpdate | Manual

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-runtimemanagementconfig.html#cfn-lambda-function-runtimemanagementconfig-updateruntimeon

    Implements

    CfnFunction.IRuntimeManagementConfigProperty
    Back to top Generated by DocFX