Module Values.RDSMetadataSource

The datasource details that are specific to Amazon RDS.

Sourcetype nonrec t = {
  1. database : RDSDatabase.t option;
    (*

    The database details required to connect to an Amazon RDS.

    *)
  2. databaseUserName : RDSDatabaseUsername.t option;
  3. selectSqlQuery : RDSSelectSqlQuery.t option;
    (*

    The SQL query that is supplied during CreateDataSourceFromRDS. Returns only if Verbose is true in GetDataSourceInput.

    *)
  4. resourceRole : EDPResourceRole.t option;
    (*

    The role (DataPipelineDefaultResourceRole) assumed by an Amazon EC2 instance to carry out the copy task from Amazon RDS to Amazon S3. For more information, see Role templates for data pipelines.

    *)
  5. serviceRole : EDPServiceRole.t option;
    (*

    The role (DataPipelineDefaultRole) assumed by the Data Pipeline service to monitor the progress of the copy task from Amazon RDS to Amazon S3. For more information, see Role templates for data pipelines.

    *)
  6. dataPipelineId : EDPPipelineId.t option;
    (*

    The ID of the Data Pipeline instance that is used to carry to copy data from Amazon RDS to Amazon S3. You can use the ID to find details about the instance in the Data Pipeline console.

    *)
}
Sourceval make : ?database:??? -> ?databaseUserName:??? -> ?selectSqlQuery:??? -> ?resourceRole:??? -> ?serviceRole:??? -> ?dataPipelineId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RDSDatabaseUsername.t | `Structure of (string * [> `String of RDSInstanceIdentifier.t ]) list ]) 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