Class: Aws::Lambda::Types::GetFunctionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetFunctionResponse
- 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
-
#code ⇒ Types::FunctionCodeLocation
The function’s code.
-
#concurrency ⇒ Types::Concurrency
The concurrent execution limit set for this function.
-
#configuration ⇒ Types::FunctionConfiguration
The function’s configuration.
-
#tags ⇒ Hash<String,String>
Returns the list of tags associated with the function.
Instance Attribute Details
#code ⇒ Types::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 |
#concurrency ⇒ Types::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
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 |
#configuration ⇒ Types::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 |
#tags ⇒ Hash<String,String>
Returns the list of tags associated with the function. For more information, see [Tagging Lambda Functions] in the **AWS Lambda Developer Guide**.
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 |