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)


3640
3641
3642
3643
3644
3645
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3640

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)


3640
3641
3642
3643
3644
3645
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3640

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