Class: Aws::Lambda::Types::TenancyConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#tenant_isolation_modeString

Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.

Returns:

  • (String)


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