Class: Aws::KafkaConnect::Types::Vpc

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb

Overview

Information about the VPC in which the connector resides.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_groupsArray<String>

The security groups for the connector.

Returns:

  • (Array<String>)


1890
1891
1892
1893
1894
1895
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1890

class Vpc < Struct.new(
  :security_groups,
  :subnets)
  SENSITIVE = []
  include Aws::Structure
end

#subnetsArray<String>

The subnets for the connector.

Returns:

  • (Array<String>)


1890
1891
1892
1893
1894
1895
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1890

class Vpc < Struct.new(
  :security_groups,
  :subnets)
  SENSITIVE = []
  include Aws::Structure
end