public static interface CfnDataSource.WebCrawlerBasicAuthenticationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataSource.WebCrawlerBasicAuthenticationProperty.Builder
A builder for
CfnDataSource.WebCrawlerBasicAuthenticationProperty |
static class |
CfnDataSource.WebCrawlerBasicAuthenticationProperty.Jsii$Proxy
An implementation for
CfnDataSource.WebCrawlerBasicAuthenticationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataSource.WebCrawlerBasicAuthenticationProperty.Builder |
builder() |
java.lang.String |
getCredentials()
Your secret ARN, which you can create in [AWS Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html).
|
java.lang.String |
getHost()
The name of the website host you want to connect to using authentication credentials.
|
java.lang.Number |
getPort()
The port number of the website host you want to connect to using authentication credentials.
|
java.lang.String getCredentials()
You use a secret if basic authentication credentials are required to connect to a website. The secret stores your credentials of user name and password.
java.lang.String getHost()
For example, the host name of https://a.example.com/page1.html is "a.example.com".
java.lang.Number getPort()
For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.