Interface CfnFunction.TenancyConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunction.TenancyConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFunction
@Stability(Stable)
public static interface CfnFunction.TenancyConfigProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the tenant isolation mode configuration for a Lambda function.
This allows you to configure specific tenant isolation strategies for your function invocations. Tenant isolation configuration cannot be modified after function creation.
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.*;
TenancyConfigProperty tenancyConfigProperty = TenancyConfigProperty.builder()
.tenantIsolationMode("tenantIsolationMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.TenancyConfigPropertystatic final classAn implementation forCfnFunction.TenancyConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTenantIsolationMode
Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.- See Also:
-
builder
-