Module Values.RedshiftDataProviderSettingsSource

Provides information that defines an Amazon Redshift data provider.

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

    The name of the Amazon Redshift server.

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

    The port value for the Amazon Redshift data provider.

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

    The database name on the Amazon Redshift data provider.

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

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

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

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

    *)
}
Sourceval make : ?serverName:??? -> ?port:??? -> ?databaseName:??? -> ?s3Path:??? -> ?s3AccessRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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