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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


1948
1949
1950
1951
1952
1953
# File 'lib/aws-sdk-kafka/types.rb', line 1948

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)


1948
1949
1950
1951
1952
1953
# File 'lib/aws-sdk-kafka/types.rb', line 1948

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