Class: Aws::Lambda::Types::GetFunctionResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

This response contains the object for the Lambda function location (see FunctionCodeLocation.

Instance Attribute Summary collapse

Instance Attribute Details

#codeTypes::FunctionCodeLocation

The function’s code.



1209
1210
1211
1212
1213
1214
1215
# File 'lib/aws-sdk-lambda/types.rb', line 1209

class GetFunctionResponse < Struct.new(
  :configuration,
  :code,
  :tags,
  :concurrency)
  include Aws::Structure
end

#concurrencyTypes::Concurrency

The concurrent execution limit set for this function. For more information, see [Managing Concurrency].

[1]: docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html

Returns:



1209
1210
1211
1212
1213
1214
1215
# File 'lib/aws-sdk-lambda/types.rb', line 1209

class GetFunctionResponse < Struct.new(
  :configuration,
  :code,
  :tags,
  :concurrency)
  include Aws::Structure
end

#configurationTypes::FunctionConfiguration

The function’s configuration.



1209
1210
1211
1212
1213
1214
1215
# File 'lib/aws-sdk-lambda/types.rb', line 1209

class GetFunctionResponse < Struct.new(
  :configuration,
  :code,
  :tags,
  :concurrency)
  include Aws::Structure
end

#tagsHash<String,String>

Returns the list of tags associated with the function. For more information, see [Tagging Lambda Functions] in the **AWS Lambda Developer Guide**.

[1]: docs.aws.amazon.com/lambda/latest/dg/tagging.html

Returns:

  • (Hash<String,String>)


1209
1210
1211
1212
1213
1214
1215
# File 'lib/aws-sdk-lambda/types.rb', line 1209

class GetFunctionResponse < Struct.new(
  :configuration,
  :code,
  :tags,
  :concurrency)
  include Aws::Structure
end