Interface CfnVersionPropsMixin.RuntimePolicyProperty

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

@Stability(Stable) public static interface CfnVersionPropsMixin.RuntimePolicyProperty 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.*;
 RuntimePolicyProperty runtimePolicyProperty = RuntimePolicyProperty.builder()
         .runtimeVersionArn("runtimeVersionArn")
         .updateRuntimeOn("updateRuntimeOn")
         .build();
 

See Also: