Class: Aws::Kafka::Types::ChannelStateInfo

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

Overview

Additional context for the current channel state, populated when the channel is in FAILED.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

A short, machine-readable code identifying the failure cause.

Returns:

  • (String)


350
351
352
353
354
355
# File 'lib/aws-sdk-kafka/types.rb', line 350

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

#messageString

A human-readable message describing the failure.

Returns:

  • (String)


350
351
352
353
354
355
# File 'lib/aws-sdk-kafka/types.rb', line 350

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