StorageDownloadFileRequest

public struct StorageDownloadFileRequest : AmplifyOperationRequest

Represents a request to download an individual object as a file, initiated by an implementation of the StorageCategoryPlugin protocol.

  • Tag: StorageDownloadFileRequest
  • key

    The unique identifier for the object in storage

    • Tag: StorageDownloadFileRequest.key

    Declaration

    Swift

    public let key: String
  • The local file to download the object to

    • Tag: StorageDownloadFileRequest.local

    Declaration

    Swift

    public let local: URL
  • Options to adjust the behavior of this request, including plugin options

    • Tag: StorageDownloadFileRequest.options

    Declaration

    Swift

    public let options: Options
    • Tag: StorageDownloadFileRequest.init

    Declaration

    Swift

    public init(key: String, local: URL, options: Options)
  • Options to adjust the behavior of this request, including plugin-options

    • Tag: StorageDownloadFileRequestOptions
    See more

    Declaration

    Swift

    struct Options