AWS.XML behaviour (aws-elixir v0.7.0) View Source
Specifies the behaviour of a XML parser.
You can switch the default XML parser which uses AWS.Util underneath
by defining a different implementation by setting the :xml_module
configuration in AWS.Client:
client = %AWS.Client{xml_module: MyCustomXMLParser}
AWS.SNS.publish(client, %{})
Link to this section Summary
Callbacks
Decodes a XML into a map. Raises in case of errors.
Encodes a map into XML iodata. Raises in case of errors.
Link to this section Functions
Link to this section Callbacks
Specs
Decodes a XML into a map. Raises in case of errors.
Specs
Encodes a map into XML iodata. Raises in case of errors.