Module Values.RestoreTableFromClusterSnapshotMessageSource

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

    The identifier of the Amazon Redshift cluster to restore the table to.

    *)
  2. snapshotIdentifier : String_.t;
    (*

    The identifier of the snapshot to restore the table from. This snapshot must have been created from the Amazon Redshift cluster specified by the ClusterIdentifier parameter.

    *)
  3. sourceDatabaseName : String_.t;
    (*

    The name of the source database that contains the table to restore from.

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

    The name of the source schema that contains the table to restore from. If you do not specify a SourceSchemaName value, the default is public.

    *)
  5. sourceTableName : String_.t;
    (*

    The name of the source table to restore from.

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

    The name of the database to restore the table to.

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

    The name of the schema to restore the table to.

    *)
  8. newTableName : String_.t;
    (*

    The name of the table to create as a result of the current request.

    *)
  9. enableCaseSensitiveIdentifier : BooleanOptional.t option;
    (*

    Indicates whether name identifiers for database, schema, and table are case sensitive. If true, the names are case sensitive. If false (default), the names are not case sensitive.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceSchemaName:??? -> ?targetDatabaseName:??? -> ?targetSchemaName:??? -> ?enableCaseSensitiveIdentifier:??? -> clusterIdentifier:String_.t -> snapshotIdentifier:String_.t -> sourceDatabaseName:String_.t -> sourceTableName:String_.t -> newTableName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.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