Class: Aws::SecurityAgent::Types::ErrorInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::ErrorInformation
- 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
-
#code ⇒ String
The error code.
-
#message ⇒ String
A message describing the error.
Instance Attribute Details
#code ⇒ String
The error code. Valid values include CLIENT_ERROR, INTERNAL_ERROR, and STOPPED_BY_USER.
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 |
#message ⇒ String
A message describing the error.
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 |