Interface EnvironmentOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EnvironmentOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:03.892Z")
@Stability(Stable)
public interface EnvironmentOptions
extends software.amazon.jsii.JsiiSerializable
Environment variables options.
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.*; EnvironmentOptions environmentOptions = EnvironmentOptions.builder() .removeInEdge(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEnvironmentOptions
static final class
An implementation forEnvironmentOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic EnvironmentOptions.Builder
builder()
default Boolean
When used in Lambda@Edge via edgeArn() API, these environment variables will be removed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRemoveInEdge
When used in Lambda@Edge via edgeArn() API, these environment variables will be removed.If not set, an error will be thrown.
Default: false - using the function in Lambda@Edge will throw
- See Also:
-
builder
- Returns:
- a
EnvironmentOptions.Builder
ofEnvironmentOptions
-