Go - NewBucket()
Create a new bucket for storing and retrieving files.
import ("github.com/nitrictech/go-sdk/nitric""github.com/nitrictech/go-sdk/nitric/storage")func main() {bucket := nitric.NewBucket("bucket-name").Allow(storage.BucketWrite, storage.BucketRead, storage.BucketDelete)nitric.Run()}
Parameters
- Name
name
- Required
- Required
- Type
- string
- Description
The unique name of this bucket within the app. Subsequent calls to
NewBucket
with the same name will return the same object.
Access
All Nitric resources provide access permissions you can use to specify the level of access your code needs to the resource. See here for details about infrastructure security.
Available permissions:
BucketRead
This permission allows your function to read files from the bucket
BucketWrite
This permission allows your function to write files to the bucket
BucketDelete
This permission allows your function to delete files from the bucket
Working with files
See the following for examples on working with files in a bucket:
Last updated on Oct 16, 2024