Class: Aws::Lambda::Types::RuntimeVersionConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#errorTypes::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_arnString

The ARN of the runtime version you want the function to use.

Returns:

  • (String)


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