Class: Aws::Kafka::Types::ErrorInfo

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

Overview

Returns information about an error state of the cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

A number describing the error programmatically.

Returns:

  • (String)


1929
1930
1931
1932
1933
1934
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1929

class ErrorInfo < Struct.new(
  :error_code,
  :error_string)
  SENSITIVE = []
  include Aws::Structure
end

#error_stringString

An optional field to provide more details about the error.

Returns:

  • (String)


1929
1930
1931
1932
1933
1934
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1929

class ErrorInfo < Struct.new(
  :error_code,
  :error_string)
  SENSITIVE = []
  include Aws::Structure
end