MCPcopy Index your code
hub / github.com/aws/aws-cli / run_step

Method run_step

awscli/customizations/wizard/core.py:242–244  ·  view source on GitHub ↗
(self, step_definition, parameters)

Source from the content-addressed store, hash-verified

240 return re.sub(self.CONDITION_PATTERN, condition_checker, value)
241
242 def run_step(self, step_definition, parameters):
243 value = self._evaluate_conditions(step_definition['value'], parameters)
244 return value.format_map(parameters)
245
246
247class APICallStep(BaseStep):

Calls 1

_evaluate_conditionsMethod · 0.95