[][src]Struct rusoto_dms::SybaseSettings

pub struct SybaseSettings {
    pub database_name: Option<String>,
    pub password: Option<String>,
    pub port: Option<i64>,
    pub secrets_manager_access_role_arn: Option<String>,
    pub secrets_manager_secret_id: Option<String>,
    pub server_name: Option<String>,
    pub username: Option<String>,
}

Provides information that defines a SAP ASE endpoint.

Fields

database_name: Option<String>

Database name for the endpoint.

password: Option<String>

Endpoint connection password.

port: Option<i64>

Endpoint TCP port.

secrets_manager_access_role_arn: Option<String>

The full Amazon Resource Name (ARN) of the IAM role that specifies AWS DMS as the trusted entity and grants the required permissions to access the value in SecretsManagerSecret. SecretsManagerSecret has the value of the AWS Secrets Manager secret that allows access to the SAP ASE endpoint.

You can specify one of two sets of values for these permissions. You can specify the values for this setting and SecretsManagerSecretId. Or you can specify clear-text values for UserName, Password, ServerName, and Port. You can't specify both. For more information on creating this SecretsManagerSecret and the SecretsManagerAccessRoleArn and SecretsManagerSecretId required to access it, see Using secrets to access AWS Database Migration Service resources in the AWS Database Migration Service User Guide.

secrets_manager_secret_id: Option<String>

The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the SAP SAE endpoint connection details.

server_name: Option<String>

Fully qualified domain name of the endpoint.

username: Option<String>

Endpoint connection user name.

Trait Implementations

impl Clone for SybaseSettings[src]

impl Debug for SybaseSettings[src]

impl Default for SybaseSettings[src]

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

impl PartialEq<SybaseSettings> for SybaseSettings[src]

impl Serialize for SybaseSettings[src]

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