Class: Aws::Kafka::Types::Error

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

Overview

Returns information about an error.

Instance Attribute Summary collapse

Instance Attribute Details

#invalid_parameterString

The parameter that caused the error.

Returns:

  • (String)


432
433
434
435
436
# File 'lib/aws-sdk-kafka/types.rb', line 432

class Error < Struct.new(
  :invalid_parameter,
  :message)
  include Aws::Structure
end

#messageString

The description of the error.

Returns:

  • (String)


432
433
434
435
436
# File 'lib/aws-sdk-kafka/types.rb', line 432

class Error < Struct.new(
  :invalid_parameter,
  :message)
  include Aws::Structure
end