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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDataSource.WebCrawlerAuthenticationConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBasicAuthentication
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.
- See Also:
-
builder
@Stability(Stable) static CfnDataSource.WebCrawlerAuthenticationConfigurationProperty.Builder builder()
-