interface DataSourceVpcConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Kendra.CfnDataSource.DataSourceVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_DataSourceVpcConfigurationProperty |
Java | software.amazon.awscdk.services.kendra.CfnDataSource.DataSourceVpcConfigurationProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
security | string[] | A list of identifiers of security groups within your Amazon VPC. |
subnet | string[] | 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.