Interface CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.kendra.*;
 WebCrawlerAuthenticationConfigurationProperty webCrawlerAuthenticationConfigurationProperty = WebCrawlerAuthenticationConfigurationProperty.builder()
         .basicAuthentication(List.of(WebCrawlerBasicAuthenticationProperty.builder()
                 .credentials("credentials")
                 .host("host")
                 .port(123)
                 .build()))
         .build();
 

See Also: