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

Function main

examples/s3/setbucketlifecycle.go:32–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30)
31
32func main() {
33 // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are
34 // dummy values, please replace them with original values.
35
36 // Requests are always secure (HTTPS) by default. Set secure=false to enable insecure (HTTP) access.
37 // This boolean value is the last argument for New().
38
39 // New returns an Amazon S3 compatible client object. API compatibility (v2 or v4) is automatically
40 // determined based on the Endpoint value.
41 s3Client, err := minio.New("s3.amazonaws.com", &minio.Options{
42 Creds: credentials.NewStaticV4("YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", ""),
43 Secure: true,
44 })
45 if err != nil {
46 log.Fatalln(err)
47 }
48
49 // s3Client.TraceOn(os.Stderr)
50
51 // Set lifecycle on a bucket
52 config := lifecycle.NewConfiguration()
53 config.Rules = []lifecycle.Rule{
54 {
55 ID: "expire-bucket",
56 Status: "Enabled",
57 Expiration: lifecycle.Expiration{
58 Days: 365,
59 },
60 },
61 }
62 err = s3Client.SetBucketLifecycle(context.Background(), "my-bucketname", config)
63 if err != nil {
64 log.Fatalln(err)
65 }
66}

Callers

nothing calls this directly

Calls 3

NewStaticV4Function · 0.92
NewConfigurationFunction · 0.92
SetBucketLifecycleMethod · 0.80

Tested by

no test coverage detected