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 object for the Lambda function location.



1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-lambda/types.rb', line 1259

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 concurrent-executions.

Returns:



1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-lambda/types.rb', line 1259

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

#configurationTypes::FunctionConfiguration

A complex type that describes function metadata.



1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-lambda/types.rb', line 1259

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>)


1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-lambda/types.rb', line 1259

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