zio.aws.core

package zio.aws.core

Type members

Classlikes

sealed trait AwsError
Companion:
object
object AwsError
Companion:
class
trait BuilderHelper[T]
Companion:
object
Companion:
class
case class FieldIsNone(field: String) extends AwsError
case class GenericAwsError(reason: Throwable) extends AwsError
case class StreamingOutputResult[R, Response, Item](response: Response, output: ZStream[R, AwsError, Item])
class ZStreamAsyncRequestBody[R](stream: ZStream[R, AwsError, Byte])(implicit runtime: Runtime[R]) extends AsyncRequestBody
class ZStreamAsyncResponseTransformer[R, Response](resultStreamPromise: Promise[Throwable, Stream[AwsError, Byte]], responsePromise: Promise[Throwable, Response], errorPromise: Promise[Throwable, Unit])(implicit runtime: Runtime[R]) extends AsyncResponseTransformer[Response, Task[StreamingOutputResult[R, Response, Byte]]]
Companion:
object