Interface CfnFunction.RuntimeManagementConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunction.RuntimeManagementConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunction

@Stability(Stable) public static interface CfnFunction.RuntimeManagementConfigProperty extends software.amazon.jsii.JsiiSerializable
Sets the runtime management configuration for a function's version.

For more information, see Runtime updates .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 RuntimeManagementConfigProperty runtimeManagementConfigProperty = RuntimeManagementConfigProperty.builder()
         .updateRuntimeOn("updateRuntimeOn")
         // the properties below are optional
         .runtimeVersionArn("runtimeVersionArn")
         .build();
 

See Also: