RuntimeVersionConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::RuntimeVersionConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::RuntimeVersionConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The ARN of the runtime and any errors that occured.
Constant Summarycollapse
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.
5940 5941 5942 5943 5944 5945 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5940 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.
5940 5941 5942 5943 5944 5945 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5940 class RuntimeVersionConfig < Struct.new( :runtime_version_arn, :error) SENSITIVE = [] include Aws::Structure end |
---|