interface WebCrawlerAuthenticationConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty | 
|  Java | software.amazon.awscdk.services.kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty | 
|  Python | aws_cdk.aws_kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-kendra»CfnDataSource»WebCrawlerAuthenticationConfigurationProperty | 
Provides the configuration information to connect to websites that require user authentication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kendra from '@aws-cdk/aws-kendra';
const webCrawlerAuthenticationConfigurationProperty: kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty = {
  basicAuthentication: [{
    credentials: 'credentials',
    host: 'host',
    port: 123,
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| basic | IResolvable | IResolvable | Web[] | The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials. | 
basicAuthentication?
Type:
IResolvable | IResolvable | Web[]
(optional)
The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.
The list includes the name and port number of the website host.
