ExAws v2.1.1 ExAws.Operation.JSON View Source

Datastructure representing an operation on a JSON based AWS service.

This module is generally not used directly, but rather is constructed by one of the relevant AWS services.

These include:

  • DynamoDB
  • Kinesis
  • Lambda (Rest style)
  • ElasticTranscoder

JSON services are generally pretty simple. You just need to populate the data attribute with whatever request body parameters need converted to JSON, and set any service specific headers.

The before_request

Link to this section Summary

Link to this section Types

Link to this type

t() View Source
t() :: %ExAws.Operation.JSON{
  before_request: term(),
  data: term(),
  headers: term(),
  http_method: term(),
  params: term(),
  parser: term(),
  path: term(),
  service: term(),
  stream_builder: term()
}

Link to this section Functions