Class: Aws::Kafka::Types::CreateClusterResponse

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

Overview

Returns information about the created cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_arnString

The Amazon Resource Name (ARN) of the cluster.

Returns:

  • (String)


277
278
279
280
281
282
# File 'lib/aws-sdk-kafka/types.rb', line 277

class CreateClusterResponse < Struct.new(
  :cluster_arn,
  :cluster_name,
  :state)
  include Aws::Structure
end

#cluster_nameString

The name of the MSK cluster.

Returns:

  • (String)


277
278
279
280
281
282
# File 'lib/aws-sdk-kafka/types.rb', line 277

class CreateClusterResponse < Struct.new(
  :cluster_arn,
  :cluster_name,
  :state)
  include Aws::Structure
end

#stateString

The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.

Returns:

  • (String)


277
278
279
280
281
282
# File 'lib/aws-sdk-kafka/types.rb', line 277

class CreateClusterResponse < Struct.new(
  :cluster_arn,
  :cluster_name,
  :state)
  include Aws::Structure
end