package awsutil
Import Path
github.com/aws/aws-sdk-go/aws/awsutil (on go.dev)
Dependency Relation
imports 9 packages, and imported by 2 packages
Package-Level Functions (total 12, in which 7 are exported)
Copy deeply copies a src structure to dst. Useful for copying request and
response structures.
Can copy between structs of different type, but will only copy fields which
are assignable, and exist in both structs. Fields which are not assignable,
or do not exist in both structs are ignored.
CopyOf returns a copy of src while also allocating the memory for dst.
src must be a pointer type or this operation will fail.
DeepEqual returns if the two values are deeply equal like reflect.DeepEqual.
In addition to this, this method will also dereference the input values if
possible so the DeepEqual performed will not fail if one parameter is a
pointer and the other is not.
DeepEqual will not perform indirection of nested values of the input parameters.
Prettify returns the string representation of a value.
SetValueAtPath sets a value at the case insensitive lexical path inside
of a structure.
StringValue returns the string representation of a value.
ValuesAtPath returns a list of values at the case insensitive lexical
path inside of a structure.
Package-Level Variables (only one, which is unexported)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |