aws-cdk-lib.aws_kendra.CfnDataSource.DataSourceVpcConfigurationProperty

interface DataSourceVpcConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.Kendra.CfnDataSource.DataSourceVpcConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_DataSourceVpcConfigurationProperty
Javasoftware.amazon.awscdk.services.kendra.CfnDataSource.DataSourceVpcConfigurationProperty
Pythonaws_cdk.aws_kendra.CfnDataSource.DataSourceVpcConfigurationProperty
TypeScript aws-cdk-lib » aws_kendra » CfnDataSource » DataSourceVpcConfigurationProperty

Provides the configuration information to connect to an Amazon VPC.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as kendra } from 'aws-cdk-lib';
const dataSourceVpcConfigurationProperty: kendra.CfnDataSource.DataSourceVpcConfigurationProperty = {
  securityGroupIds: ['securityGroupIds'],
  subnetIds: ['subnetIds'],
};

Properties

NameTypeDescription
securityGroupIdsstring[]A list of identifiers of security groups within your Amazon VPC.
subnetIdsstring[]A list of identifiers for subnets within your Amazon VPC.

securityGroupIds

Type: 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.


subnetIds

Type: 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.