Interface CfnVersion.RuntimePolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVersion.RuntimePolicyProperty.Jsii$Proxy
- Enclosing class:
CfnVersion
@Stability(Stable)
public static interface CfnVersion.RuntimePolicyProperty
extends software.amazon.jsii.JsiiSerializable
Runtime Management Config of a function.
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.*; RuntimePolicyProperty runtimePolicyProperty = RuntimePolicyProperty.builder() .updateRuntimeOn("updateRuntimeOn") // the properties below are optional .runtimeVersionArn("runtimeVersionArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVersion.RuntimePolicyProperty
static final class
An implementation forCfnVersion.RuntimePolicyProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUpdateRuntimeOn
The runtime update mode.- See Also:
-
getRuntimeVersionArn
The ARN of the runtime the function is configured to use.If the runtime update mode is manual, the ARN is returned, otherwise null is returned.
- See Also:
-
builder
-