Class: Aws::NovaAct::Types::ActError

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb

Overview

Error information when an act fails to execute successfully.

Constant Summary collapse

SENSITIVE =
[:message]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

A human-readable description of the error that occurred.

Returns:

  • (String)


40
41
42
43
44
45
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 40

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

#typeString

The type or category of error that occurred.

Returns:

  • (String)


40
41
42
43
44
45
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 40

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