Class: Aws::Kafka::Types::CreateClusterV2Response
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::CreateClusterV2Response
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Returns information about the created cluster of either the provisioned or the serverless type.
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.
-
#cluster_type ⇒ String
The type of the cluster.
-
#state ⇒ String
The state of the cluster.
Instance Attribute Details
#cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
2399 2400 2401 2402 2403 2404 2405 2406 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2399 class CreateClusterV2Response < Struct.new( :cluster_arn, :cluster_name, :state, :cluster_type) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the MSK cluster.
2399 2400 2401 2402 2403 2404 2405 2406 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2399 class CreateClusterV2Response < Struct.new( :cluster_arn, :cluster_name, :state, :cluster_type) SENSITIVE = [] include Aws::Structure end |
#cluster_type ⇒ String
The type of the cluster. The possible types are PROVISIONED or SERVERLESS.
2399 2400 2401 2402 2403 2404 2405 2406 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2399 class CreateClusterV2Response < Struct.new( :cluster_arn, :cluster_name, :state, :cluster_type) 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.
2399 2400 2401 2402 2403 2404 2405 2406 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2399 class CreateClusterV2Response < Struct.new( :cluster_arn, :cluster_name, :state, :cluster_type) SENSITIVE = [] include Aws::Structure end |