Class: Aws::StorageGateway::Types::StorageGatewayError

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

Overview

Provides additional information about an error that was returned by the service. See the ‘errorCode` and `errorDetails` members for more information about the error.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

Additional information about the error.

Returns:

  • (String)


5881
5882
5883
5884
5885
5886
# File 'lib/aws-sdk-storagegateway/types.rb', line 5881

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

#error_detailsHash<String,String>

Human-readable text that provides detail about the error that occurred.

Returns:

  • (Hash<String,String>)


5881
5882
5883
5884
5885
5886
# File 'lib/aws-sdk-storagegateway/types.rb', line 5881

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