Go - Bucket.File()

Create a reference to a file within a bucket.

import (
"fmt"
"github.com/nitrictech/go-sdk/nitric"
)
func main() {
bucket, err := nitric.NewBucket("bucket-name").With(nitric.BucketReading)
if err != nil {
return
}
file := bucket.File("cat.png")
nitric.Run()
}

Parameters

  • Name
    name
    Required
    Required
    Type
    string
    Description

    The unique name/reference to the file.

Notes

The file does not need to exist, only a reference to that file is being created.

Available Operations

Last updated on Dec 19, 2024