Registry /
cloud / aws-aws-sdk-go-v2-service-glue
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
glue
✓ github.com/aws/aws-sdk-go-v2/service/glue
List all Glue databases using the AWS SDK v2 Glue client.
package main
import (
"context"
"fmt"
"github.com/aws/aws-sdk-go-v2/service/glue"
)
func main() {
client := glue.NewFromConfig(cfg) // cfg is an aws.Config
result, err := client.GetDatabases(context.TODO(), &glue.GetDatabasesInput{})
if err != nil {
panic(err)
}
fmt.Println("Databases:", result.DatabaseList)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.144.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.