JVM - bucket.file()

Create a reference to a file within a bucket.

import io.nitric.Nitric;

public class Application {
  public static void main(String[] args) {
    var bucket = Nitric.INSTANCE.bucket("images").with();

    var file = bucket.file("cat.png");

    Nitric.INSTANCE.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