go get github.com/aereal/go-aws-timestream-driver
import (
"database/sql"
"github.com/aereal/go-aws-timestream-driver"
)
func main() {
sql.Open(timestreamdriver.DriverName, "awstimestream:///")
}
See also Data Source Name format section.
In URI template normative definition:
awstimestream://{customEndpointHost}/{?region,accessKeyID,secretAccessKey,enableXray}
Example:
awstimestream://custom-endpoint.example/?region=us-east-1&accessKeyID=my-key&enableXray=true
See LICENSE file.