pub struct ServiceNowConfiguration {
pub authentication_type: Option<String>,
pub host_url: String,
pub knowledge_article_configuration: Option<ServiceNowKnowledgeArticleConfiguration>,
pub secret_arn: String,
pub service_catalog_configuration: Option<ServiceNowServiceCatalogConfiguration>,
pub service_now_build_version: String,
}Expand description
Provides configuration information required to connect to a ServiceNow data source.
Fields§
§authentication_type: Option<String>Determines the type of authentication used to connect to the ServiceNow instance. If you choose HTTP_BASIC, Amazon Kendra is authenticated using the user name and password provided in the AWS Secrets Manager secret in the SecretArn field. When you choose OAUTH2, Amazon Kendra is authenticated using the OAuth token and secret provided in the Secrets Manager secret, and the user name and password are used to determine which information Amazon Kendra has access to.
When you use OAUTH2 authentication, you must generate a token and a client secret using the ServiceNow console. For more information, see Using a ServiceNow data source.
host_url: StringThe ServiceNow instance that the data source connects to. The host endpoint should look like the following: {instance}.service-now.com.
knowledge_article_configuration: Option<ServiceNowKnowledgeArticleConfiguration>Provides configuration information for crawling knowledge articles in the ServiceNow site.
secret_arn: StringThe Amazon Resource Name (ARN) of the AWS Secret Manager secret that contains the user name and password required to connect to the ServiceNow instance.
service_catalog_configuration: Option<ServiceNowServiceCatalogConfiguration>Provides configuration information for crawling service catalogs in the ServiceNow site.
service_now_build_version: StringThe identifier of the release that the ServiceNow host is running. If the host is not running the LONDON release, use OTHERS.
Trait Implementations§
Source§impl Clone for ServiceNowConfiguration
impl Clone for ServiceNowConfiguration
Source§fn clone(&self) -> ServiceNowConfiguration
fn clone(&self) -> ServiceNowConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more