You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Kendra::Types::DataSourceVpcConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DataSourceVpcConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  subnet_ids: ["SubnetId"], # required
  security_group_ids: ["VpcSecurityGroupId"], # required
}

Provides information for connecting to an Amazon VPC.

Returned by:

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 Kendra to connect to the data source.

Returns:

  • (Array<String>)

    A list of identifiers of security groups within your Amazon VPC.

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

    A list of identifiers for subnets within your Amazon VPC.