Class: Aws::Kafka::Types::CreateClusterV2Request

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#cluster_nameString

The name of the cluster.

Returns:

  • (String)


2497
2498
2499
2500
2501
2502
2503
2504
# File 'lib/aws-sdk-kafka/types.rb', line 2497

class CreateClusterV2Request < Struct.new(
  :cluster_name,
  :tags,
  :provisioned,
  :serverless)
  SENSITIVE = []
  include Aws::Structure
end

#provisionedTypes::ProvisionedRequest

Creates a provisioned cluster.



2497
2498
2499
2500
2501
2502
2503
2504
# File 'lib/aws-sdk-kafka/types.rb', line 2497

class CreateClusterV2Request < Struct.new(
  :cluster_name,
  :tags,
  :provisioned,
  :serverless)
  SENSITIVE = []
  include Aws::Structure
end

#serverlessTypes::ServerlessRequest

Creates a serverless cluster.



2497
2498
2499
2500
2501
2502
2503
2504
# File 'lib/aws-sdk-kafka/types.rb', line 2497

class CreateClusterV2Request < Struct.new(
  :cluster_name,
  :tags,
  :provisioned,
  :serverless)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

A map of tags that you want the cluster to have.

Returns:

  • (Hash<String,String>)


2497
2498
2499
2500
2501
2502
2503
2504
# File 'lib/aws-sdk-kafka/types.rb', line 2497

class CreateClusterV2Request < Struct.new(
  :cluster_name,
  :tags,
  :provisioned,
  :serverless)
  SENSITIVE = []
  include Aws::Structure
end