@Stability(value=Stable)
public static interface CfnFunction.RuntimeManagementConfigProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFunction.RuntimeManagementConfigProperty.Builder
A builder for
CfnFunction.RuntimeManagementConfigProperty |
static class |
CfnFunction.RuntimeManagementConfigProperty.Jsii$Proxy
An implementation for
CfnFunction.RuntimeManagementConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFunction.RuntimeManagementConfigProperty.Builder |
builder() |
default String |
getRuntimeVersionArn()
The ARN of the runtime version you want the function to use.
|
String |
getUpdateRuntimeOn()
Specify the runtime update mode.
|
@Stability(value=Stable) @NotNull String getUpdateRuntimeOn()
Valid Values : Auto | FunctionUpdate | Manual
@Stability(value=Stable) @Nullable default String getRuntimeVersionArn()
This is only required if you're using the Manual runtime update mode.
@Stability(value=Stable) static CfnFunction.RuntimeManagementConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.