(ctx context.Context, name string, decoder *runtimevar.Decoder)
| 47 | } |
| 48 | |
| 49 | func (h *harness) MakeWatcher(ctx context.Context, name string, decoder *runtimevar.Decoder) (driver.Watcher, error) { |
| 50 | return newWatcher(h.client, name, decoder, nil), nil |
| 51 | } |
| 52 | |
| 53 | func (h *harness) CreateVariable(ctx context.Context, name string, val []byte) error { |
| 54 | _, err := h.client.PutParameter(ctx, &ssm.PutParameterInput{ |
nothing calls this directly
no test coverage detected