Interface CfnFunctionPropsMixin.RuntimeManagementConfigProperty

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

@Stability(Stable) public static interface CfnFunctionPropsMixin.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.cfnpropertymixins.services.lambda.*;
 RuntimeManagementConfigProperty runtimeManagementConfigProperty = RuntimeManagementConfigProperty.builder()
         .runtimeVersionArn("runtimeVersionArn")
         .updateRuntimeOn("updateRuntimeOn")
         .build();
 

See Also: