Class: Aws::QBusiness::Types::DataSourceVpcConfiguration

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

Overview

Provides configuration information needed to connect to an Amazon VPC (Virtual Private Cloud).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Q Business to connect to the data source.

Returns:

  • (Array<String>)


2067
2068
2069
2070
2071
2072
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2067

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

#subnet_idsArray<String>

A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

Returns:

  • (Array<String>)


2067
2068
2069
2070
2071
2072
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 2067

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