interface TenancyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnFunctionPropsMixin.TenancyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnFunctionPropsMixin_TenancyConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnFunctionPropsMixin.TenancyConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnFunctionPropsMixin.TenancyConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » 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 { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const tenancyConfigProperty: lambda.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