trait Request[T, E] extends Object with IEventEmitter

AWS.Request - All requests made through the SDK are asynchronous and use a callback interface. Each service method that kicks off a request returns an AWS.Request object that you can use to register callbacks.

Annotations
@RawJSType() @native()
See also

http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Request.html

Linear Supertypes
IEventEmitter, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Request
  2. IEventEmitter
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def abort(): Unit

    Aborts a request, emitting the error and complete events.

    Aborts a request, emitting the error and complete events. This feature is not supported in the browser environment of the SDK.

  5. def addListener(eventName: String, listener: Function): Request.this.type
    Definition Classes
    IEventEmitter
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def createReadStream(): Readable

    Converts the request object into a readable stream that can be read from or piped into a writable stream.

    Converts the request object into a readable stream that can be read from or piped into a writable stream. The data read from a readable stream contains only the raw HTTP body contents. This feature is not supported in the browser environment of the SDK.

  9. val domain: String
    Definition Classes
    IEventEmitter
  10. def eachPage(callback: (E, T, () ⇒ Any) ⇒ Boolean): Unit

    Iterates over each page of results given a pageable request, calling the provided callback with each page of data.

    Iterates over each page of results given a pageable request, calling the provided callback with each page of data. After all pages have been retrieved, the callback is called with null data.

    callback

    - The callback that handles the response.

  11. def eachPage(callback: (E, T) ⇒ Boolean): Unit

    Iterates over each page of results given a pageable request, calling the provided callback with each page of data.

    Iterates over each page of results given a pageable request, calling the provided callback with each page of data. After all pages have been retrieved, the callback is called with null data.

    callback

    - The callback that handles the response.

  12. def emit(name: String, args: Any*): Any
    Definition Classes
    IEventEmitter
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def getMaxListeners(): Int
    Definition Classes
    IEventEmitter
  18. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  20. def httpRequest: HttpRequest

    The raw HTTP request object containing request headers and body information sent by the service.

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def isPageable(): Boolean

    Returns whether the operation can return multiple pages of response data.

  23. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  24. def listenerCount(eventName: String): Int
    Definition Classes
    IEventEmitter
  25. def listeners(eventName: String): Array[Function]
    Definition Classes
    IEventEmitter
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  29. def on(eventName: String, listener: Function): Request.this.type
    Definition Classes
    IEventEmitter
  30. def once(eventName: String, listener: Function): Request.this.type
    Definition Classes
    IEventEmitter
  31. def promise(): Promise[T]

    Returns a 'thenable' promise.

  32. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  33. def removeAllListeners(): Request.this.type
    Definition Classes
    IEventEmitter
  34. def removeAllListeners(eventName: String): Request.this.type
    Definition Classes
    IEventEmitter
  35. def removeListener(eventName: String, listener: Function): Request.this.type
    Definition Classes
    IEventEmitter
  36. def send(callback: (E, T) ⇒ Any = null): Unit

    Sends the request object.

    Sends the request object. If a callback is supplied, it is called when a response is returned from the service.

  37. def setMaxListeners(n: Int): Request.this.type
    Definition Classes
    IEventEmitter
  38. def startTime: Date

    The time that the request started.

  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. def toLocaleString(): String
    Definition Classes
    Object
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. val usingDomains: Boolean
    Definition Classes
    IEventEmitter
  43. def valueOf(): Any
    Definition Classes
    Object
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from IEventEmitter

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped