[][src]Struct rusoto_kendra::ServiceNowConfiguration

pub struct ServiceNowConfiguration {
    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,
}

Provides configuration information required to connect to a ServiceNow data source.

Fields

host_url: String

The 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: String

The 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: String

The identifier of the release that the ServiceNow host is running. If the host is not running the LONDON release, use OTHERS.

Trait Implementations

impl Clone for ServiceNowConfiguration[src]

impl Debug for ServiceNowConfiguration[src]

impl Default for ServiceNowConfiguration[src]

impl<'de> Deserialize<'de> for ServiceNowConfiguration[src]

impl PartialEq<ServiceNowConfiguration> for ServiceNowConfiguration[src]

impl Serialize for ServiceNowConfiguration[src]

impl StructuralPartialEq for ServiceNowConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.