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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafka/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>)


2726
2727
2728
2729
2730
2731
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2726

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


2726
2727
2728
2729
2730
2731
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2726

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