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