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

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

Overview

Returns information about an error.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#invalid_parameterString

The parameter that caused the error.

Returns:

  • (String)


1889
1890
1891
1892
1893
1894
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1889

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

#messageString

The description of the error.

Returns:

  • (String)


1889
1890
1891
1892
1893
1894
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1889

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