package
5.64.0+incompatible
Repository: https://github.com/hashicorp/terraform-provider-aws.git
Documentation: pkg.go.dev

# Packages

Package ujson implements a fast and minimal JSON parser and transformer that works on unstructured json.

# Functions

DecodeFromBytes decodes (unmarshals) the given byte slice, containing valid JSON, into `to`.
DecodeFromReader decodes (unmarshals) the given io.Reader, pointing to a JSON stream, into `to`.
DecodeFromString decodes (unmarshals) the given string, containing valid JSON, into `to`.
EncodeToBytes JSON encodes (marshals) `from` into a byte slice.
EncodeToString JSON encodes (marshals) `from` into a string.
EqualBytes returns whether the JSON documents in the given byte slices are equal.
EqualStrings returns whether the JSON documents in the given strings are equal.
RemoveEmptyFields removes all empty fields from a valid JSON string.
RemoveFields removes the specified fields from a valid JSON string.
No description provided by the author
SmithyDocumentToString converts a [Smithy document](https://smithy.io/2.0/spec/simple-types.html#document) to a JSON string.

# Interfaces

JSONStringer interface is used to marshal and unmarshal JSON interface objects.