S3ClientError

public enum S3ClientError : Error

List of possible errors thrown by S3Client implementation.

  • Indicates that a fatal error occurred. This could be due to coding error, out-of-memory condition or other conditions that is beyond control of S3Client implementation.

    Declaration

    Swift

    case fatalError(description: String)
  • Backed service is temporarily unavailable due to network or service availability issues.

    Declaration

    Swift

    case serviceError(cause: Error)