interface WebCrawlerAuthenticationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnDataSourcePropsMixin_WebCrawlerAuthenticationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnDataSourcePropsMixin » 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 { mixins as kendra_mixins } from '@aws-cdk/mixins-preview/aws-kendra';
const webCrawlerAuthenticationConfigurationProperty: kendra_mixins.CfnDataSourcePropsMixin.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.

.NET
Go
Java
Python
TypeScript