Values.OracleDataProviderSettingsSourceProvides information that defines an Oracle data provider.
type nonrec t = {serverName : String_.t option;The name of the Oracle server.
*)port : IntegerOptional.t option;The port value for the Oracle data provider.
*)databaseName : String_.t option;The database name on the Oracle data provider.
*)sslMode : DmsSslModeValue.t option;The SSL mode used to connect to the Oracle data provider. The default value is none.
*)certificateArn : String_.t option;The Amazon Resource Name (ARN) of the certificate used for SSL connection.
*)asmServer : String_.t option;The address of your Oracle Automatic Storage Management (ASM) server. You can set this value from the asm_server value. You set asm_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.
*)secretsManagerOracleAsmSecretId : String_.t option;The identifier of the secret in Secrets Manager that contains the Oracle ASM connection details. Required only if your data provider uses the Oracle ASM server.
*)secretsManagerOracleAsmAccessRoleArn : String_.t option;The ARN of the IAM role that provides access to the secret in Secrets Manager that contains the Oracle ASM connection details.
*)secretsManagerSecurityDbEncryptionSecretId : String_.t option;The identifier of the secret in Secrets Manager that contains the transparent data encryption (TDE) password. DMS requires this password to access Oracle redo logs encrypted by TDE using Binary Reader.
*)secretsManagerSecurityDbEncryptionAccessRoleArn : String_.t option;The ARN of the IAM role that provides access to the secret in Secrets Manager that contains the TDE password.
*)s3Path : String_.t option;The path for the Amazon S3 bucket that the application uses for accessing the user-defined schema.
*)s3AccessRoleArn : String_.t option;The ARN for the role the application uses to access its Amazon S3 bucket.
*)}val make :
?serverName:??? ->
?port:??? ->
?databaseName:??? ->
?sslMode:??? ->
?certificateArn:??? ->
?asmServer:??? ->
?secretsManagerOracleAsmSecretId:??? ->
?secretsManagerOracleAsmAccessRoleArn:??? ->
?secretsManagerSecurityDbEncryptionSecretId:??? ->
?secretsManagerSecurityDbEncryptionAccessRoleArn:??? ->
?s3Path:??? ->
?s3AccessRoleArn:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]