Interface CfnFunctionPropsMixin.ITenancyConfigProperty
Specifies the tenant isolation mode configuration for a Lambda function.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lambda
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFunctionPropsMixin.ITenancyConfigProperty
Syntax (vb)
Public Interface CfnFunctionPropsMixin.ITenancyConfigProperty
Remarks
This allows you to configure specific tenant isolation strategies for your function invocations. Tenant isolation configuration cannot be modified after function creation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Lambda;
var tenancyConfigProperty = new TenancyConfigProperty {
TenantIsolationMode = "tenantIsolationMode"
};
Synopsis
Properties
| TenantIsolationMode | Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID. |
Properties
TenantIsolationMode
Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.
string? TenantIsolationMode { get; }