Class: Aws::Kendra::Types::DataSourceVpcConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::DataSourceVpcConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass DataSourceVpcConfiguration data as a hash:
{
subnet_ids: ["SubnetId"], # required
security_group_ids: ["VpcSecurityGroupId"], # required
}
Provides information for connecting to an Amazon VPC.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
A list of identifiers of security groups within your Amazon VPC.
-
#subnet_ids ⇒ Array<String>
A list of identifiers for subnets within your Amazon VPC.
Instance Attribute Details
#security_group_ids ⇒ Array<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.
2619 2620 2621 2622 2623 2624 |
# File 'lib/aws-sdk-kendra/types.rb', line 2619 class DataSourceVpcConfiguration < Struct.new( :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<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.
2619 2620 2621 2622 2623 2624 |
# File 'lib/aws-sdk-kendra/types.rb', line 2619 class DataSourceVpcConfiguration < Struct.new( :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |