[][src]Struct rusoto_kendra::DatabaseConfiguration

pub struct DatabaseConfiguration {
    pub acl_configuration: Option<AclConfiguration>,
    pub column_configuration: ColumnConfiguration,
    pub connection_configuration: ConnectionConfiguration,
    pub database_engine_type: String,
    pub vpc_configuration: Option<DataSourceVpcConfiguration>,
}

Provides the information necessary to connect a database to an index.

Fields

acl_configuration: Option<AclConfiguration>

Information about the database column that provides information for user context filtering.

column_configuration: ColumnConfiguration

Information about where the index should get the document information from the database.

connection_configuration: ConnectionConfiguration

The information necessary to connect to a database.

database_engine_type: String

The type of database engine that runs the database.

vpc_configuration: Option<DataSourceVpcConfiguration>

Trait Implementations

impl Clone for DatabaseConfiguration[src]

impl Debug for DatabaseConfiguration[src]

impl Default for DatabaseConfiguration[src]

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

impl PartialEq<DatabaseConfiguration> for DatabaseConfiguration[src]

impl Serialize for DatabaseConfiguration[src]

impl StructuralPartialEq for DatabaseConfiguration[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, 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> Sealed<T> for T where
    T: ?Sized

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.