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

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


3669
3670
3671
3672
3673
3674
# File 'lib/aws-sdk-kafka/types.rb', line 3669

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)


3669
3670
3671
3672
3673
3674
# File 'lib/aws-sdk-kafka/types.rb', line 3669

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