jsonObjectKeyProvider is a valueProvider that returns a JSON value type for encoding a value for the given JSON object key.
| 52 | // jsonObjectKeyProvider is a valueProvider that returns a JSON value type for encoding a value for the given JSON object |
| 53 | // key. |
| 54 | type jsonObjectKeyProvider struct { |
| 55 | Object *smithyjson.Object |
| 56 | Key string |
| 57 | } |
| 58 | |
| 59 | func (p jsonObjectKeyProvider) GetValue() smithyjson.Value { |
| 60 | return p.Object.Key(p.Key) |
nothing calls this directly
no outgoing calls
no test coverage detected