Interface CfnDataSource.WebCrawlerBasicAuthenticationProperty

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

@Stability(Stable) public static interface CfnDataSource.WebCrawlerBasicAuthenticationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information to connect to websites that require basic 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.*;
 WebCrawlerBasicAuthenticationProperty webCrawlerBasicAuthenticationProperty = WebCrawlerBasicAuthenticationProperty.builder()
         .credentials("credentials")
         .host("host")
         .port(123)
         .build();
 

See Also: