Interface CfnDataSource.WebCrawlerAuthenticationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.WebCrawlerAuthenticationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.WebCrawlerAuthenticationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kendra.*;
 WebCrawlerAuthenticationConfigurationProperty webCrawlerAuthenticationConfigurationProperty = WebCrawlerAuthenticationConfigurationProperty.builder()
         .basicAuthentication(List.of(WebCrawlerBasicAuthenticationProperty.builder()
                 .credentials("credentials")
                 .host("host")
                 .port(123)
                 .build()))
         .build();
 

See Also: