Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tenancyconfig.html

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; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tenancyconfig.html#cfn-lambda-function-tenancyconfig-tenantisolationmode

Back to top Generated by DocFX