Class: Aws::Kafka::Types::DeleteClusterResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::DeleteClusterResponse
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Returns information about the deleted cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
-
#state ⇒ String
The state of the cluster.
Instance Attribute Details
#cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1020 class DeleteClusterResponse < Struct.new( :cluster_arn, :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.
1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1020 class DeleteClusterResponse < Struct.new( :cluster_arn, :state) SENSITIVE = [] include Aws::Structure end |