Class: Aws::Lambda::Types::FunctionCodeLocationError

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Details about an error related to retrieving a function's deployment package.

Constant Summary collapse

SENSITIVE =
[:message]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code for the failed retrieval.

Returns:

  • (String)


3749
3750
3751
3752
3753
3754
# File 'lib/aws-sdk-lambda/types.rb', line 3749

class FunctionCodeLocationError < Struct.new(
  :error_code,
  :message)
  SENSITIVE = [:message]
  include Aws::Structure
end

#messageString

A description of the error.

Returns:

  • (String)


3749
3750
3751
3752
3753
3754
# File 'lib/aws-sdk-lambda/types.rb', line 3749

class FunctionCodeLocationError < Struct.new(
  :error_code,
  :message)
  SENSITIVE = [:message]
  include Aws::Structure
end