interface TenancyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnFunction.TenancyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnFunction_TenancyConfigProperty |
Java | software.amazon.awscdk.services.lambda.CfnFunction.TenancyConfigProperty |
Python | aws_cdk.aws_lambda.CfnFunction.TenancyConfigProperty |
TypeScript | aws-cdk-lib » aws_lambda » CfnFunction » TenancyConfigProperty |
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 { aws_lambda as lambda } from 'aws-cdk-lib';
const tenancyConfigProperty: lambda.CfnFunction.TenancyConfigProperty = {
tenantIsolationMode: 'tenantIsolationMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| tenant | string | Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID. |
tenantIsolationMode
Type:
string
Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.

.NET
Go
Java
Python
TypeScript