Class: Aws::Kafka::Types::VpcConfig

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

Overview

The configuration of the Amazon VPCs for the cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

The IDs of the security groups associated with the cluster.

Returns:

  • (Array<String>)


3187
3188
3189
3190
3191
3192
# File 'lib/aws-sdk-kafka/types.rb', line 3187

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

#subnet_idsArray<String>

The IDs of the subnets associated with the cluster.

Returns:

  • (Array<String>)


3187
3188
3189
3190
3191
3192
# File 'lib/aws-sdk-kafka/types.rb', line 3187

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