MCPcopy Create free account
hub / github.com/aws/smithy-go / Value

Method Value

middleware/stack_values.go:53–63  ·  view source on GitHub ↗
(key interface{})

Source from the content-addressed store, hash-verified

51}
52
53func (m *stackValues) Value(key interface{}) interface{} {
54 if key == m.key {
55 return m.value
56 }
57
58 if m.parent == nil {
59 return nil
60 }
61
62 return m.parent.Value(key)
63}
64
65func (c *stackValues) String() string {
66 var str strings.Builder

Callers 3

GetLoggerFunction · 0.45
WithStackValueFunction · 0.45
GetStackValueFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected