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


2077
2078
2079
2080
2081
2082
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2077

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

#subnetsArray<String>

The subnets for the connector.

Returns:

  • (Array<String>)


2077
2078
2079
2080
2081
2082
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2077

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