Interface CfnDataProvider.OracleSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProvider.OracleSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDataProvider
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.dms.*; OracleSettingsProperty oracleSettingsProperty = OracleSettingsProperty.builder() .databaseName("databaseName") .port(123) .serverName("serverName") .sslMode("sslMode") // the properties below are optional .asmServer("asmServer") .certificateArn("certificateArn") .secretsManagerOracleAsmAccessRoleArn("secretsManagerOracleAsmAccessRoleArn") .secretsManagerOracleAsmSecretId("secretsManagerOracleAsmSecretId") .secretsManagerSecurityDbEncryptionAccessRoleArn("secretsManagerSecurityDbEncryptionAccessRoleArn") .secretsManagerSecurityDbEncryptionSecretId("secretsManagerSecurityDbEncryptionSecretId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataProvider.OracleSettingsProperty
static final class
An implementation forCfnDataProvider.OracleSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
For an Oracle source endpoint, your ASM server address.default String
Database name for the endpoint.getPort()
Endpoint TCP port.default String
Required only if your Oracle endpoint uses Automatic Storage Management (ASM).default String
Required only if your Oracle endpoint uses Automatic Storage Management (ASM).default String
default String
Fully qualified domain name of the endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
Database name for the endpoint.- See Also:
-
getPort
Endpoint TCP port.- See Also:
-
getServerName
Fully qualified domain name of the endpoint.For an Amazon RDS Oracle instance, this is the output of DescribeDBInstances , in the
[Endpoint](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html) .Address
field.- See Also:
-
getSslMode
- See Also:
-
getAsmServer
For an Oracle source endpoint, your ASM server address.You can set this value from the
asm_server
value. You setasm_server
as part of the extra connection attribute string to access an Oracle server with Binary Reader that uses ASM. For more information, see Configuration for change data capture (CDC) on an Oracle source database .- See Also:
-
getCertificateArn
- See Also:
-
getSecretsManagerOracleAsmAccessRoleArn
Required only if your Oracle endpoint uses Automatic Storage Management (ASM).The full ARN of the IAM role that specifies AWS DMS as the trusted entity and grants the required permissions to access the
SecretsManagerOracleAsmSecret
. ThisSecretsManagerOracleAsmSecret
has the secret value that allows access to the Oracle ASM of the endpoint.You can specify one of two sets of values for these permissions. You can specify the values for this setting and
SecretsManagerOracleAsmSecretId
. Or you can specify clear-text values forAsmUser
,AsmPassword
, andAsmServerName
. You can't specify both. For more information on creating thisSecretsManagerOracleAsmSecret
and theSecretsManagerOracleAsmAccessRoleArn
andSecretsManagerOracleAsmSecretId
required to access it, see Using secrets to access AWS Database Migration Service resources in the AWS Database Migration Service User Guide .- See Also:
-
getSecretsManagerOracleAsmSecretId
Required only if your Oracle endpoint uses Automatic Storage Management (ASM).The full ARN, partial ARN, or friendly name of the
SecretsManagerOracleAsmSecret
that contains the Oracle ASM connection details for the Oracle endpoint.- See Also:
-
getSecretsManagerSecurityDbEncryptionAccessRoleArn
- See Also:
-
getSecretsManagerSecurityDbEncryptionSecretId
- See Also:
-
builder
-