Class: Aws::Kafka::Types::BrokerNodeGroupInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kafka/types.rb

Overview

Note:

When making an API call, you may pass BrokerNodeGroupInfo data as a hash:

{
  broker_az_distribution: "DEFAULT", # accepts DEFAULT
  client_subnets: ["__string"], # required
  instance_type: "__stringMin5Max32", # required
  security_groups: ["__string"],
  storage_info: {
    ebs_storage_info: {
      volume_size: 1,
    },
  },
}

Describes the setup to be used for Kafka broker nodes in the cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#broker_az_distributionString

The distribution of broker nodes across Availability Zones.

Returns:

  • (String)


60
61
62
63
64
65
66
67
# File 'lib/aws-sdk-kafka/types.rb', line 60

class BrokerNodeGroupInfo < Struct.new(
  :broker_az_distribution,
  :client_subnets,
  :instance_type,
  :security_groups,
  :storage_info)
  include Aws::Structure
end

#client_subnetsArray<String>

The list of subnets to connect to in the client virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. Client subnets can’t be in Availability Zone us-east-1e.

Returns:

  • (Array<String>)


60
61
62
63
64
65
66
67
# File 'lib/aws-sdk-kafka/types.rb', line 60

class BrokerNodeGroupInfo < Struct.new(
  :broker_az_distribution,
  :client_subnets,
  :instance_type,
  :security_groups,
  :storage_info)
  include Aws::Structure
end

#instance_typeString

The type of Amazon EC2 instances to use for Kafka brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.

Returns:

  • (String)


60
61
62
63
64
65
66
67
# File 'lib/aws-sdk-kafka/types.rb', line 60

class BrokerNodeGroupInfo < Struct.new(
  :broker_az_distribution,
  :client_subnets,
  :instance_type,
  :security_groups,
  :storage_info)
  include Aws::Structure
end

#security_groupsArray<String>

The AWS security groups to associate with the elastic network interfaces in order to specify who can connect to and communicate with the Amazon MSK cluster.

Returns:

  • (Array<String>)


60
61
62
63
64
65
66
67
# File 'lib/aws-sdk-kafka/types.rb', line 60

class BrokerNodeGroupInfo < Struct.new(
  :broker_az_distribution,
  :client_subnets,
  :instance_type,
  :security_groups,
  :storage_info)
  include Aws::Structure
end

#storage_infoTypes::StorageInfo

Contains information about storage volumes attached to MSK broker nodes.

Returns:



60
61
62
63
64
65
66
67
# File 'lib/aws-sdk-kafka/types.rb', line 60

class BrokerNodeGroupInfo < Struct.new(
  :broker_az_distribution,
  :client_subnets,
  :instance_type,
  :security_groups,
  :storage_info)
  include Aws::Structure
end