Class: Aws::Kafka::Types::CreateClusterResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::CreateClusterResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Returns information about the created cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
-
#cluster_name ⇒ String
The name of the MSK cluster.
-
#state ⇒ String
The state of the cluster.
Instance Attribute Details
#cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
1066 1067 1068 1069 1070 1071 1072 |
# File 'lib/aws-sdk-kafka/types.rb', line 1066 class CreateClusterResponse < Struct.new( :cluster_arn, :cluster_name, :state) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the MSK cluster.
1066 1067 1068 1069 1070 1071 1072 |
# File 'lib/aws-sdk-kafka/types.rb', line 1066 class CreateClusterResponse < Struct.new( :cluster_arn, :cluster_name, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
1066 1067 1068 1069 1070 1071 1072 |
# File 'lib/aws-sdk-kafka/types.rb', line 1066 class CreateClusterResponse < Struct.new( :cluster_arn, :cluster_name, :state) SENSITIVE = [] include Aws::Structure end |