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 object for the Lambda function location.
-
#concurrency ⇒ Types::Concurrency
The concurrent execution limit set for this function.
-
#configuration ⇒ Types::FunctionConfiguration
A complex type that describes function metadata.
-
#tags ⇒ Hash<String,String>
Returns the list of tags associated with the function.
Instance Attribute Details
#code ⇒ Types::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 |
#concurrency ⇒ Types::Concurrency
The concurrent execution limit set for this function. For more information, see concurrent-executions.
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 |
#configuration ⇒ Types::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 |
#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**.
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 |