interface TenancyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnFunctionPropsMixin.TenancyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnFunctionPropsMixin_TenancyConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnFunctionPropsMixin.TenancyConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnFunctionPropsMixin.TenancyConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnFunctionPropsMixin » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const tenancyConfigProperty: lambda_mixins.CfnFunctionPropsMixin.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
(optional)
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