Trait/Object

io.scalajs.npm.aws

Request

Related Docs: object Request | package aws

Permalink

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def abort(): Unit

    Permalink

    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

    Permalink
    Definition Classes
    IEventEmitter
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def createReadStream(): Readable

    Permalink

    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. var domain: String

    Permalink
    Definition Classes
    IEventEmitter
  10. def eachPage(callback: (E, T, () ⇒ Any) ⇒ Boolean): Unit

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    IEventEmitter
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def getMaxListeners(): Int

    Permalink
    Definition Classes
    IEventEmitter
  18. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. def httpRequest: HttpRequest

    Permalink

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

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def isPageable(): Boolean

    Permalink

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

  23. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  24. def listenerCount(eventName: String): Int

    Permalink
    Definition Classes
    IEventEmitter
  25. def listeners(eventName: String): Array[Function]

    Permalink
    Definition Classes
    IEventEmitter
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. def on(eventName: String, listener: Function): Request.this.type

    Permalink
    Definition Classes
    IEventEmitter
  30. def once(eventName: String, listener: Function): Request.this.type

    Permalink
    Definition Classes
    IEventEmitter
  31. def promise(): Promise[T]

    Permalink

    Returns a 'thenable' promise.

  32. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  33. def removeAllListeners(): Request.this.type

    Permalink
    Definition Classes
    IEventEmitter
  34. def removeAllListeners(eventName: String): Request.this.type

    Permalink
    Definition Classes
    IEventEmitter
  35. def removeListener(eventName: String, listener: Function): Request.this.type

    Permalink
    Definition Classes
    IEventEmitter
  36. def send(callback: (E, T) ⇒ Any = null): Unit

    Permalink

    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

    Permalink
    Definition Classes
    IEventEmitter
  38. def startTime: Date

    Permalink

    The time that the request started.

  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. var usingDomains: Boolean

    Permalink
    Definition Classes
    IEventEmitter
  43. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from IEventEmitter

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped