(self)
| 324 | self._lineage = value |
| 325 | |
| 326 | def _raise_usage_error(self): |
| 327 | lineage = ' '.join([c.name for c in self.lineage]) |
| 328 | error_msg = ( |
| 329 | f"usage: aws [options] {lineage} <subcommand> " |
| 330 | "[parameters]\naws: [ERROR]: too few arguments" |
| 331 | ) |
| 332 | raise ParamValidationError(error_msg) |
| 333 | |
| 334 | def _add_customization_to_user_agent(self): |
| 335 | add_command_lineage_to_user_agent_extra( |