Class: Aws::Kafka::Types::KafkaClusterClientVpcConfig

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

The security groups to attach to the ENIs for the broker nodes.

Returns:

  • (Array<String>)


2453
2454
2455
2456
2457
2458
# File 'lib/aws-sdk-kafka/types.rb', line 2453

class KafkaClusterClientVpcConfig < Struct.new(
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

The list of subnets in the client VPC to connect to.

Returns:

  • (Array<String>)


2453
2454
2455
2456
2457
2458
# File 'lib/aws-sdk-kafka/types.rb', line 2453

class KafkaClusterClientVpcConfig < Struct.new(
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end