Class: Aws::Lambda::Types::RuntimeVersionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::RuntimeVersionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
The ARN of the runtime and any errors that occured.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error ⇒ Types::RuntimeVersionError
Error response when Lambda is unable to retrieve the runtime version for a function.
-
#runtime_version_arn ⇒ String
The ARN of the runtime version you want the function to use.
Instance Attribute Details
#error ⇒ Types::RuntimeVersionError
Error response when Lambda is unable to retrieve the runtime version for a function.
5823 5824 5825 5826 5827 5828 |
# File 'lib/aws-sdk-lambda/types.rb', line 5823 class RuntimeVersionConfig < Struct.new( :runtime_version_arn, :error) SENSITIVE = [] include Aws::Structure end |
#runtime_version_arn ⇒ String
The ARN of the runtime version you want the function to use.
5823 5824 5825 5826 5827 5828 |
# File 'lib/aws-sdk-lambda/types.rb', line 5823 class RuntimeVersionConfig < Struct.new( :runtime_version_arn, :error) SENSITIVE = [] include Aws::Structure end |