StorageAccessLevel

public enum StorageAccessLevel : String

The access level for objects in Storage operations. See https://aws-amplify.github.io/docs/ios/storage#storage-access

  • Tag: StorageAccessLevel
  • Objects can be read or written by any user without authentication

    • Tag: StorageAccessLevel.guest

    Declaration

    Swift

    case guest
  • Objects can be viewed by any user without authentication, but only written by the owner

    • Tag: StorageAccessLevel.protected

    Declaration

    Swift

    case protected
  • Objects can only be read and written by the owner

    • Tag: StorageAccessLevel.private

    Declaration

    Swift

    case `private`