Module Values.PostgreSqlDataProviderSettingsSource

Provides information that defines a PostgreSQL data provider.

Sourcetype nonrec t = {
  1. serverName : String_.t option;
    (*

    The name of the PostgreSQL server.

    *)
  2. port : IntegerOptional.t option;
    (*

    The port value for the PostgreSQL data provider.

    *)
  3. databaseName : String_.t option;
    (*

    The database name on the PostgreSQL data provider.

    *)
  4. sslMode : DmsSslModeValue.t option;
    (*

    The SSL mode used to connect to the PostgreSQL data provider. The default value is none.

    *)
  5. certificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the certificate used for SSL connection.

    *)
  6. s3Path : String_.t option;
    (*

    The path for the Amazon S3 bucket that the application uses for accessing the user-defined schema.

    *)
  7. s3AccessRoleArn : String_.t option;
    (*

    The ARN for the role the application uses to access its Amazon S3 bucket.

    *)
}
Sourceval make : ?serverName:??? -> ?port:??? -> ?databaseName:??? -> ?sslMode:??? -> ?certificateArn:??? -> ?s3Path:??? -> ?s3AccessRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerOptional.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t