(value)
| 59 | |
| 60 | |
| 61 | def _resolve_query(value): |
| 62 | try: |
| 63 | return jmespath.compile(value) |
| 64 | except Exception as e: |
| 65 | raise ParamValidationError( |
| 66 | "Bad value for --query %s: %s" % (value, str(e)) |
| 67 | ) |
| 68 | |
| 69 | |
| 70 | def _resolve_endpoint_url(value): |
nothing calls this directly
no test coverage detected