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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataProvider.OracleSettingsPropertystatic final classAn implementation forCfnDataProvider.OracleSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringFor an Oracle source endpoint, your ASM server address.default StringDatabase name for the endpoint.getPort()Endpoint TCP port.default StringRequired only if your Oracle endpoint uses Automatic Storage Management (ASM).default StringRequired only if your Oracle endpoint uses Automatic Storage Management (ASM).default Stringdefault StringFully 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) .Addressfield.- See Also:
-
getSslMode
- See Also:
-
getAsmServer
For an Oracle source endpoint, your ASM server address.You can set this value from the
asm_servervalue. You setasm_serveras 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. ThisSecretsManagerOracleAsmSecrethas 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 thisSecretsManagerOracleAsmSecretand theSecretsManagerOracleAsmAccessRoleArnandSecretsManagerOracleAsmSecretIdrequired 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
SecretsManagerOracleAsmSecretthat contains the Oracle ASM connection details for the Oracle endpoint.- See Also:
-
getSecretsManagerSecurityDbEncryptionAccessRoleArn
- See Also:
-
getSecretsManagerSecurityDbEncryptionSecretId
- See Also:
-
builder
-