[−][src]Struct rusoto_glue::Connection
Defines a connection to a data source.
Fields
connection_properties: Option<HashMap<String, String>>
These key-value pairs define parameters for the connection:
-
HOST
- The host URI: either the fully qualified domain name (FQDN) or the IPv4 address of the database host. -
PORT
- The port number, between 1024 and 65535, of the port on which the database host is listening for database connections. -
USERNAME
- The name under which to log in to the database. The value string forUSERNAME
is "USERNAME
". -
PASSWORD
- A password, if one is used, for the user name. -
ENCRYPTEDPASSWORD
- When you enable connection password protection by settingConnectionPasswordEncryption
in the Data Catalog encryption settings, this field stores the encrypted password. -
JDBCDRIVERJARURI
- The Amazon S3 path of the JAR file that contains the JDBC driver to use. -
JDBCDRIVERCLASSNAME
- The class name of the JDBC driver to use. -
JDBCENGINE
- The name of the JDBC engine to use. -
JDBCENGINEVERSION
- The version of the JDBC engine to use. -
CONFIGFILES
- (Reserved for future use). -
INSTANCEID
- The instance ID to use. -
JDBCCONNECTIONURL
- The URL for the JDBC connection. -
JDBCENFORCESSL
- A Boolean string (true, false) specifying whether Secure Sockets Layer (SSL) with hostname matching will be enforced for the JDBC connection on the client. The default is false.
connection_type: Option<String>
The type of the connection. Currently, only JDBC is supported; SFTP is not supported.
creation_time: Option<f64>
The time that this connection definition was created.
description: Option<String>
The description of the connection.
last_updated_by: Option<String>
The user, group, or role that last updated this connection definition.
last_updated_time: Option<f64>
The last time that this connection definition was updated.
match_criteria: Option<Vec<String>>
A list of criteria that can be used in selecting this connection.
name: Option<String>
The name of the connection definition.
physical_connection_requirements: Option<PhysicalConnectionRequirements>
A map of physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup
, that are needed to make this connection successfully.
Trait Implementations
impl PartialEq<Connection> for Connection
[src]
fn eq(&self, other: &Connection) -> bool
[src]
fn ne(&self, other: &Connection) -> bool
[src]
impl Default for Connection
[src]
fn default() -> Connection
[src]
impl Clone for Connection
[src]
fn clone(&self) -> Connection
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Connection
[src]
impl<'de> Deserialize<'de> for Connection
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for Connection
impl Sync for Connection
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self