jsonArrayProvider is a valueProvider that returns a JSON value type for encoding a value in the given JSON array.
| 62 | |
| 63 | // jsonArrayProvider is a valueProvider that returns a JSON value type for encoding a value in the given JSON array. |
| 64 | type jsonArrayProvider struct { |
| 65 | Array *smithyjson.Array |
| 66 | } |
| 67 | |
| 68 | func (p jsonArrayProvider) GetValue() smithyjson.Value { |
| 69 | return p.Array.Value() |
nothing calls this directly
no outgoing calls
no test coverage detected