Struct aws_sdk_databasemigration::model::SybaseSettings
source · #[non_exhaustive]pub struct SybaseSettings { /* private fields */ }
Expand description
Provides information that defines a SAP ASE endpoint.
Implementations§
source§impl SybaseSettings
impl SybaseSettings
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
Database name for the endpoint.
sourcepub fn server_name(&self) -> Option<&str>
pub fn server_name(&self) -> Option<&str>
Fully qualified domain name of the endpoint.
sourcepub fn secrets_manager_access_role_arn(&self) -> Option<&str>
pub fn secrets_manager_access_role_arn(&self) -> Option<&str>
The full Amazon Resource Name (ARN) of the IAM role that specifies DMS as the trusted entity and grants the required permissions to access the value in SecretsManagerSecret
. The role must allow the iam:PassRole
action. SecretsManagerSecret
has the value of the Amazon Web Services 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 Database Migration Service resources in the Database Migration Service User Guide.
sourcepub fn secrets_manager_secret_id(&self) -> Option<&str>
pub fn secrets_manager_secret_id(&self) -> Option<&str>
The full ARN, partial ARN, or friendly name of the SecretsManagerSecret
that contains the SAP SAE endpoint connection details.
source§impl SybaseSettings
impl SybaseSettings
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SybaseSettings
.
Trait Implementations§
source§impl Clone for SybaseSettings
impl Clone for SybaseSettings
source§fn clone(&self) -> SybaseSettings
fn clone(&self) -> SybaseSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SybaseSettings
impl Debug for SybaseSettings
source§impl PartialEq<SybaseSettings> for SybaseSettings
impl PartialEq<SybaseSettings> for SybaseSettings
source§fn eq(&self, other: &SybaseSettings) -> bool
fn eq(&self, other: &SybaseSettings) -> bool
self
and other
values to be equal, and is used
by ==
.