Class CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty
Provides the configuration information to connect to websites that require user authentication.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty : CfnDataSourcePropsMixin.IWebCrawlerAuthenticationConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty Implements CfnDataSourcePropsMixin.IWebCrawlerAuthenticationConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins;
var webCrawlerAuthenticationConfigurationProperty = new WebCrawlerAuthenticationConfigurationProperty {
BasicAuthentication = new [] { new WebCrawlerBasicAuthenticationProperty {
Credentials = "credentials",
Host = "host",
Port = 123
} }
};
Synopsis
Constructors
| WebCrawlerAuthenticationConfigurationProperty() | Provides the configuration information to connect to websites that require user authentication. |
Properties
| BasicAuthentication | The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials. |
Constructors
WebCrawlerAuthenticationConfigurationProperty()
Provides the configuration information to connect to websites that require user authentication.
public WebCrawlerAuthenticationConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins;
var webCrawlerAuthenticationConfigurationProperty = new WebCrawlerAuthenticationConfigurationProperty {
BasicAuthentication = new [] { new WebCrawlerBasicAuthenticationProperty {
Credentials = "credentials",
Host = "host",
Port = 123
} }
};
Properties
BasicAuthentication
The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.
public object? BasicAuthentication { get; set; }
Property Value
Remarks
The list includes the name and port number of the website host.
Type union: either IResolvable or (either IResolvable or CfnDataSourcePropsMixin.IWebCrawlerBasicAuthenticationProperty)[]