Class: Aws::Kafka::Types::StateInfo

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

Overview

Contains information about the state of the Amazon MSK cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

If the cluster is in an unusable state, this field contains the code that describes the issue.

Returns:

  • (String)


2852
2853
2854
2855
2856
2857
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2852

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

#messageString

If the cluster is in an unusable state, this field contains a message that describes the issue.

Returns:

  • (String)


2852
2853
2854
2855
2856
2857
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2852

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