[][src]Struct rusoto_kendra::ConnectionConfiguration

pub struct ConnectionConfiguration {
    pub database_host: String,
    pub database_name: String,
    pub database_port: i64,
    pub secret_arn: String,
    pub table_name: String,
}

Provides the information necessary to connect to a database.

Fields

database_host: String

The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

database_name: String

The name of the database containing the document data.

database_port: i64

The port that the database uses for connections.

secret_arn: String

The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

table_name: String

The name of the table that contains the document data.

Trait Implementations

impl Clone for ConnectionConfiguration[src]

impl Debug for ConnectionConfiguration[src]

impl Default for ConnectionConfiguration[src]

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

impl PartialEq<ConnectionConfiguration> for ConnectionConfiguration[src]

impl Serialize for ConnectionConfiguration[src]

impl StructuralPartialEq for ConnectionConfiguration[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.