Class: Aws::SecurityAgent::Types::ErrorInformation

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

Overview

Contains error information for a pentest job that encountered an error.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The error code. Valid values include CLIENT_ERROR, INTERNAL_ERROR, and STOPPED_BY_USER.

Returns:



3698
3699
3700
3701
3702
3703
# File 'lib/aws-sdk-securityagent/types.rb', line 3698

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

#messageString

A message describing the error.

Returns:



3698
3699
3700
3701
3702
3703
# File 'lib/aws-sdk-securityagent/types.rb', line 3698

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