Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cluster_nameString

The name of the cluster.

Returns:

  • (String)

2366
2367
2368
2369
2370
2371
2372
2373
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2366

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

#provisionedTypes::ProvisionedRequest

Creates a provisioned cluster.


2366
2367
2368
2369
2370
2371
2372
2373
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2366

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

#serverlessTypes::ServerlessRequest

Creates a serverless cluster.


2366
2367
2368
2369
2370
2371
2372
2373
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2366

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>)

2366
2367
2368
2369
2370
2371
2372
2373
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2366

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