Class: Aws::Lambda::Types::TenancyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::TenancyConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tenant_isolation_mode ⇒ String
Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.
Instance Attribute Details
#tenant_isolation_mode ⇒ String
Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.
6467 6468 6469 6470 6471 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6467 class TenancyConfig < Struct.new( :tenant_isolation_mode) SENSITIVE = [] include Aws::Structure end |