Class: Aws::Lambda::Types::GetFunctionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetFunctionResponse
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ Types::FunctionCodeLocation
The deployment package of the function or version.
-
#concurrency ⇒ Types::Concurrency
The function's [reserved concurrency][1].
-
#configuration ⇒ Types::FunctionConfiguration
The configuration of the function or version.
-
#tags ⇒ Hash<String,String>
The function's [tags][1].
-
#tags_error ⇒ Types::TagsError
An object that contains details about an error related to retrieving tags.
Instance Attribute Details
#code ⇒ Types::FunctionCodeLocation
The deployment package of the function or version.
3083 3084 3085 3086 3087 3088 3089 3090 3091 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3083 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end |
#concurrency ⇒ Types::Concurrency
The function's reserved concurrency.
3083 3084 3085 3086 3087 3088 3089 3090 3091 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3083 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end |
#configuration ⇒ Types::FunctionConfiguration
The configuration of the function or version.
3083 3084 3085 3086 3087 3088 3089 3090 3091 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3083 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The function's tags. Lambda returns tag data only if you have explicit allow permissions for lambda:ListTags.
3083 3084 3085 3086 3087 3088 3089 3090 3091 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3083 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end |
#tags_error ⇒ Types::TagsError
An object that contains details about an error related to retrieving tags.
3083 3084 3085 3086 3087 3088 3089 3090 3091 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3083 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end |