Class: Aws::Lambda::Types::FunctionCodeLocationError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::FunctionCodeLocationError
- 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
-
#error_code ⇒ String
The error code for the failed retrieval.
-
#message ⇒ String
A description of the error.
Instance Attribute Details
#error_code ⇒ String
The error code for the failed retrieval.
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 |
#message ⇒ String
A description of the error.
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 |