aws-cdk-lib.aws_kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty

interface WebCrawlerAuthenticationConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.Kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_WebCrawlerAuthenticationConfigurationProperty
Javasoftware.amazon.awscdk.services.kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty
Pythonaws_cdk.aws_kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_kendra as kendra } from 'aws-cdk-lib';
const webCrawlerAuthenticationConfigurationProperty: kendra.CfnDataSource.WebCrawlerAuthenticationConfigurationProperty = {
  basicAuthentication: [{
    credentials: 'credentials',
    host: 'host',
    port: 123,
  }],
};

Properties

NameTypeDescription
basicAuthentication?IResolvable | IResolvable | WebCrawlerBasicAuthenticationProperty[]The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.

basicAuthentication?

Type: IResolvable | IResolvable | WebCrawlerBasicAuthenticationProperty[] (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.