akka.stream.alpakka.s3.impl.S3Request.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-stream-alpakka-s3_2.11 Show documentation
Show all versions of akka-stream-alpakka-s3_2.11 Show documentation
Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
/*
* Copyright (C) 2016-2018 Lightbend Inc.
*/
package akka.stream.alpakka.s3.impl
trait S3Request
private[impl] case object GetObject extends S3Request
private[impl] case object HeadObject extends S3Request
private[impl] case object PutObject extends S3Request
private[impl] case object InitiateMultipartUpload extends S3Request
private[impl] case object UploadPart extends S3Request
private[impl] case object CopyPart extends S3Request