Class: Aws::Kafka::Types::CreateClusterV2Request
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::CreateClusterV2Request
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Creates a new Amazon MSK cluster of either the provisioned or the serverless type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name of the cluster.
-
#provisioned ⇒ Types::ProvisionedRequest
Creates a provisioned cluster.
-
#serverless ⇒ Types::ServerlessRequest
Creates a serverless cluster.
-
#tags ⇒ Hash<String,String>
A map of tags that you want the cluster to have.
Instance Attribute Details
#cluster_name ⇒ String
The name of the cluster.
1790 1791 1792 1793 1794 1795 1796 1797 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1790 class CreateClusterV2Request < Struct.new( :cluster_name, :tags, :provisioned, :serverless) SENSITIVE = [] include Aws::Structure end |
#provisioned ⇒ Types::ProvisionedRequest
Creates a provisioned cluster.
1790 1791 1792 1793 1794 1795 1796 1797 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1790 class CreateClusterV2Request < Struct.new( :cluster_name, :tags, :provisioned, :serverless) SENSITIVE = [] include Aws::Structure end |
#serverless ⇒ Types::ServerlessRequest
Creates a serverless cluster.
1790 1791 1792 1793 1794 1795 1796 1797 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1790 class CreateClusterV2Request < Struct.new( :cluster_name, :tags, :provisioned, :serverless) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A map of tags that you want the cluster to have.
1790 1791 1792 1793 1794 1795 1796 1797 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1790 class CreateClusterV2Request < Struct.new( :cluster_name, :tags, :provisioned, :serverless) SENSITIVE = [] include Aws::Structure end |