pub struct OracleConnectionProfile {
pub database_service: Option<String>,
pub forward_ssh_connectivity: Option<ForwardSshTunnelConnectivity>,
pub host: Option<String>,
pub password: Option<String>,
pub password_set: Option<bool>,
pub port: Option<i32>,
pub private_connectivity: Option<PrivateConnectivity>,
pub ssl: Option<SslConfig>,
pub static_service_ip_connectivity: Option<StaticServiceIpConnectivity>,
pub username: Option<String>,
}
Expand description
Specifies connection parameters required specifically for Oracle databases.
This type is not used in any activity, and only used as part of another schema.
Fields§
§database_service: Option<String>
Required. Database service for the Oracle connection.
forward_ssh_connectivity: Option<ForwardSshTunnelConnectivity>
Forward SSH tunnel connectivity.
host: Option<String>
Required. The IP or hostname of the source Oracle database.
password: Option<String>
Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.
password_set: Option<bool>
Output only. Indicates whether a new password is included in the request.
port: Option<i32>
Required. The network port of the source Oracle database.
private_connectivity: Option<PrivateConnectivity>
Private connectivity.
ssl: Option<SslConfig>
SSL configuration for the connection to the source Oracle database. * Only SERVER_ONLY
configuration is supported for Oracle SSL. * SSL is supported for Oracle versions 12 and above.
static_service_ip_connectivity: Option<StaticServiceIpConnectivity>
Static Service IP connectivity.
username: Option<String>
Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.
Trait Implementations§
Source§impl Clone for OracleConnectionProfile
impl Clone for OracleConnectionProfile
Source§fn clone(&self) -> OracleConnectionProfile
fn clone(&self) -> OracleConnectionProfile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for OracleConnectionProfile
impl Debug for OracleConnectionProfile
Source§impl Default for OracleConnectionProfile
impl Default for OracleConnectionProfile
Source§fn default() -> OracleConnectionProfile
fn default() -> OracleConnectionProfile
Source§impl<'de> Deserialize<'de> for OracleConnectionProfile
impl<'de> Deserialize<'de> for OracleConnectionProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for OracleConnectionProfile
impl Serialize for OracleConnectionProfile
impl Part for OracleConnectionProfile
Auto Trait Implementations§
impl Freeze for OracleConnectionProfile
impl RefUnwindSafe for OracleConnectionProfile
impl Send for OracleConnectionProfile
impl Sync for OracleConnectionProfile
impl Unpin for OracleConnectionProfile
impl UnwindSafe for OracleConnectionProfile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more