MCPcopy
hub / github.com/minio/minio-go / main

Function main

examples/s3/listbuckets.go:31–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

29)
30
31func main() {
32 // Note: YOUR-ACCESSKEYID and YOUR-SECRETACCESSKEY are
33 // dummy values, please replace them with original values.
34
35 // Requests are always secure (HTTPS) by default. Set secure=false to enable insecure (HTTP) access.
36 // This boolean value is the last argument for New().
37
38 // New returns an Amazon S3 compatible client object. API compatibility (v2 or v4) is automatically
39 // determined based on the Endpoint value.
40 s3Client, err := minio.New("s3.amazonaws.com", &minio.Options{
41 Creds: credentials.NewStaticV4("YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", ""),
42 Secure: true,
43 })
44 if err != nil {
45 log.Fatalln(err)
46 }
47
48 buckets, err := s3Client.ListBuckets(context.Background())
49 if err != nil {
50 log.Fatalln(err)
51 }
52 for _, bucket := range buckets {
53 log.Println(bucket)
54 }
55}

Callers

nothing calls this directly

Calls 2

NewStaticV4Function · 0.92
ListBucketsMethod · 0.80

Tested by

no test coverage detected